mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
95e15366e7
Fix issue #2846.
9 lines
181 B
GLSL
9 lines
181 B
GLSL
#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()
|
|
{
|
|
}
|