aboutsummaryrefslogtreecommitdiff
path: root/pacc/glsl/fill.frag
blob: 010b5dc9b5d012f153157a6f7175b427d041ed06 (plain)
1
2
3
4
5
uniform sampler2D palette;
varying mediump vec2 texcoord;
void main(void) {
  gl_FragColor = texture2D(palette, vec2(texcoord.x, 0.0));
}