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

10 lines
125 B
Plaintext

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