mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
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;
|
||
|
}
|