git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@23551 e7fa87d3-cd2b-0410-9028-fcbf551c1848
12 lines
167 B
GLSL
12 lines
167 B
GLSL
#version 400 core
|
|
|
|
void main()
|
|
{
|
|
EmitStreamVertex(1);
|
|
EndStreamPrimitive(0);
|
|
EmitVertex();
|
|
EndPrimitive();
|
|
|
|
int id = gl_InvocationID;
|
|
}
|