updated readme
[andemo] / sdr / foo.p.glsl
1 uniform sampler2D tex;
2
3 varying vec4 color;
4 varying vec2 texcoord;
5
6 void main()
7 {
8         vec4 texel = texture2D(tex, texcoord);
9         gl_FragColor = color * texel;
10 }