From abef6da56913f1c55528103e60a50451a39628b1 Mon Sep 17 00:00:00 2001 From: WlodekM Date: Sun, 16 Jun 2024 10:35:45 +0300 Subject: initial commit --- misc/wiiu/textured.psh.glsl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 misc/wiiu/textured.psh.glsl (limited to 'misc/wiiu/textured.psh.glsl') diff --git a/misc/wiiu/textured.psh.glsl b/misc/wiiu/textured.psh.glsl new file mode 100644 index 0000000..71ef45b --- /dev/null +++ b/misc/wiiu/textured.psh.glsl @@ -0,0 +1,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; +} + -- cgit 1.4.1-2-gfad0