mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-24 03:39:51 +00:00
14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
|
#version 330
|
||
|
|
||
|
layout(points) in;
|
||
|
layout(triangle_strip, max_vertices = 4) out;
|
||
|
|
||
|
float getV();
|
||
|
|
||
|
void main (void)
|
||
|
{
|
||
|
float v = getV();
|
||
|
EndPrimitive();
|
||
|
EndPrimitive();
|
||
|
}
|