12 lines
148 B
GLSL
12 lines
148 B
GLSL
#ifdef GL_ES
|
|
precision mediump float;
|
|
precision mediump int;
|
|
#endif
|
|
|
|
// output:
|
|
varying vec4 f_color;
|
|
|
|
void main(void) {
|
|
gl_FragColor = f_color;
|
|
}
|