11 lines
138 B
GLSL
11 lines
138 B
GLSL
|
#ifdef GL_ES
|
||
|
precision mediump float;
|
||
|
precision mediump int;
|
||
|
#endif
|
||
|
|
||
|
varying vec4 f_color;
|
||
|
|
||
|
void main(void) {
|
||
|
gl_FragColor = f_color;
|
||
|
}
|