mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 20:59:04 +00:00
19 lines
295 B
GLSL
19 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;
|
|
}
|