mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
494a02a2b0
To do this, more generally use a named -1 as a not set value.
13 lines
220 B
GLSL
13 lines
220 B
GLSL
#version 330
|
|
|
|
layout(points) in;
|
|
layout(triangle_strip, max_vertices = 0) out;
|
|
in highp vec4 v_geom_FragColor[];
|
|
out highp vec4 v_frag_FragColor;
|
|
|
|
void main (void)
|
|
{
|
|
EndPrimitive();
|
|
EndPrimitive();
|
|
}
|