12 lines
135 B
GLSL
12 lines
135 B
GLSL
#version 450
|
|
|
|
layout(triangles) in;
|
|
layout(triangle_strip) out;
|
|
layout(max_vertices = 4) out;
|
|
|
|
void main()
|
|
{
|
|
gl_ViewportIndex = 1;
|
|
}
|
|
|