mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 12:00:05 +00:00
9 lines
181 B
Plaintext
9 lines
181 B
Plaintext
|
#version 430 core
|
||
|
#extension GL_ARB_enhanced_layouts : require
|
||
|
layout(isolines, point_mode) in;
|
||
|
layout (xfb_offset = 0) out vec4 unsized[]; // error: unsized array
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
}
|