mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
39374dadb5
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31212 e7fa87d3-cd2b-0410-9028-fcbf551c1848
20 lines
295 B
GLSL
20 lines
295 B
GLSL
#version 430 core
|
|
|
|
in vec4 inV;
|
|
|
|
centroid out vec4 outVc;
|
|
smooth out vec4 outVs;
|
|
flat out vec4 outVf;
|
|
noperspective out vec4 outVn;
|
|
|
|
centroid noperspective out vec4 outVcn;
|
|
|
|
void main()
|
|
{
|
|
outVc = inV;
|
|
outVs = inV;
|
|
outVf = inV;
|
|
outVn = inV;
|
|
outVcn = inV;
|
|
}
|