6 lines
71 B
GLSL
6 lines
71 B
GLSL
varying vec3 fcolor;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(fcolor, 1);
|
|
}
|