efl/src/modules/evas/engines/gl_common/shader/rect_frag.shd

14 lines
195 B
Plaintext

#ifdef GL_ES
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
#endif
uniform sampler2D tex;
varying vec4 col;
void main()
{
gl_FragColor = col;
}