efl/legacy/evas/src/modules/engines/gl_common/shader/img_bgra_nomul_frag.shd

10 lines
146 B
Plaintext

#ifdef GL_ES
precision highp float;
#endif
uniform sampler2D tex;
varying vec2 tex_c;
void main()
{
gl_FragColor = texture2D(tex, tex_c.xy);
}