blob: 656961c5b2e5737ab9a33b13c5a1eed70bf5a1e5 [file] [log] [blame]
Jason Samsc3cff152012-01-06 17:30:29 -08001varying vec2 varTex0;
2
3void main() {
4 lowp vec3 col0 = texture2D(UNI_Tex0, varTex0).rgb;
5 gl_FragColor.xyz = col0 * UNI_modulate.rgb;
6 gl_FragColor.w = UNI_modulate.a;
7}
8