8 lines
116 B
GLSL
8 lines
116 B
GLSL
#version 100
|
|
precision mediump float;
|
|
varying vec3 v_color;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(v_color, 1.0);
|
|
}
|