You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#version 450 core
|
|
|
|
layout(triangles) in;
|
|
|
|
layout(line_strip) out;
|
|
layout(max_vertices = 127) out;
|
|
layout(invocations = 4) in;
|
|
|
|
void main()
|
|
{
|
|
gl_PointSize = gl_in[1].gl_PointSize;
|
|
gl_Layer = 2;
|
|
gl_ViewportIndex = 3;
|
|
}
|