mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
|
#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();
|
||
|
}
|