mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-23 19:29:44 +00:00
10 lines
69 B
GLSL
10 lines
69 B
GLSL
|
#version 450
|
||
|
|
||
|
in vec3 v;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec4 color = vec4(v);
|
||
|
}
|
||
|
|