mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
699684180f
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@27714 e7fa87d3-cd2b-0410-9028-fcbf551c1848
15 lines
254 B
GLSL
15 lines
254 B
GLSL
#version 450 core
|
|
|
|
in gl_PerVertex {
|
|
float gl_CullDistance[3];
|
|
} gl_in[gl_MaxPatchVertices];
|
|
|
|
out gl_PerVertex {
|
|
float gl_CullDistance[3];
|
|
} gl_out[];
|
|
|
|
void main()
|
|
{
|
|
gl_out[0].gl_CullDistance[2] = gl_in[1].gl_CullDistance[2];
|
|
}
|