mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 12:00:05 +00:00
12 lines
107 B
GLSL
12 lines
107 B
GLSL
|
#version 450
|
||
|
|
||
|
in Vertex {
|
||
|
vec4 v;
|
||
|
} vVert;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec4 color = vec4(vVert.v2.rgb, 1.0);
|
||
|
}
|
||
|
|