mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-11 21:03:45 +00:00
11 lines
128 B
GLSL
11 lines
128 B
GLSL
|
#version 450 core
|
||
|
|
||
|
out gl_PerVertex {
|
||
|
float gl_CullDistance[3];
|
||
|
};
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_CullDistance[2] = 4.5;
|
||
|
}
|