#ifdef GL_ES
precision highp float;
#endif
uniform vec4 uDiffuseColor;

void main(void) {
    gl_FragColor = uDiffuseColor;
}
