8 lines
87 B
GLSL
8 lines
87 B
GLSL
#version 120
|
|
|
|
varying vec3 vColor;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(vColor, 1.0);
|
|
}
|