7 lines
67 B
GLSL
7 lines
67 B
GLSL
|
uniform vec3 col;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = vec4(col, 1.0);
|
||
|
}
|