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

14 lines
218 B
Plaintext

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