blob: ead40fe5556cb38588e8b5cf7b2bc5c95409eb4a (
plain) (
tree)
|
|
#ifdef GL_ES
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
#endif
#ifdef HIGHER_THAN_300
out vec4 fragColor;
#define gl_FragColor fragColor
#endif
uniform vec4 color;
void main() {
fragColor = color;
}
|