summary refs log tree commit diff
path: root/misc/wiiu/textured.psh.glsl
blob: 71ef45b2f3b0f2a76b27ef4d93e3a312f08adbdd (plain)
1
2
3
4
5
6
7
8
9
varying vec4 out_col;
varying vec2 out_uv;
uniform sampler2D texImage;

void main() {
  vec4 col = texture(texImage, out_uv) * out_col;
  gl_FragColor = col;
}