mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
12 lines
145 B
Plaintext
12 lines
145 B
Plaintext
|
#version 400 core
|
||
|
|
||
|
// no layout(vertices = ...) out;
|
||
|
int outa[gl_out.length()]; // ERROR
|
||
|
|
||
|
patch out vec4 patchOut;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
}
|