mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
10 lines
117 B
GLSL
10 lines
117 B
GLSL
#version 330
|
|
|
|
layout(lines) in;
|
|
layout(line_strip, max_vertices = 6) out;
|
|
|
|
float getV()
|
|
{
|
|
return 1.0;
|
|
}
|