glslang/Test/contradict_1.geom
Malcolm Bechard 6f723ebbe3
fix incorrect error when multiple compilation units don't declare layouts (#2238)
when using multiple compilation units, input/output layouts don't need
to be declared in every unit.
2020-05-21 00:10:33 -06:00

10 lines
117 B
GLSL
Executable File

#version 330
layout(lines) in;
layout(line_strip, max_vertices = 6) out;
float getV()
{
return 1.0;
}