10 lines
69 B
GLSL
10 lines
69 B
GLSL
#version 450
|
|
|
|
in vec3 v;
|
|
|
|
void main()
|
|
{
|
|
vec4 color = vec4(v);
|
|
}
|
|
|