precision mediump float;
varying vec4 v_Color;
uniform float ufOpacity;
void main() {
    gl_FragColor = v_Color * ufOpacity;
}
