11 lines
160 B
GLSL
11 lines
160 B
GLSL
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
|
|
// Fragment color received from the vertex shader.
|
|
varying vec4 v_color;
|
|
|
|
void main(){
|
|
gl_FragColor = v_color;
|
|
}
|