summaryrefslogtreecommitdiffstats
path: root/system/shaders/GLES/2.0/gles_videofilter.frag
blob: d4c15eeee5ab207c709d1c1e4ab18f72d20da8ef (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 100

precision mediump float;

uniform sampler2D img;
varying vec2 cord;

void main()
{
  gl_FragColor = texture2D(img, cord);
}