mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
bbbcb5b2eb
Fixed off-by-one error with gl_MaxClipDistances and similar limits.
8 lines
93 B
GLSL
8 lines
93 B
GLSL
#version 130
|
|
|
|
out float gl_ClipDistance[8]; // OK, 8 is gl_MaxClipDistances
|
|
|
|
void main()
|
|
{
|
|
}
|