more fixes

This commit is contained in:
pythongosssss
2026-01-31 16:30:10 -08:00
parent 7c1f02d1fa
commit bb048d4aaa
4 changed files with 19 additions and 14 deletions

View File

@@ -2,7 +2,6 @@
precision highp float;
uniform sampler2D u_image0;
uniform vec2 u_resolution;
in vec2 v_texCoord;
layout(location = 0) out vec4 fragColor0;
@@ -17,4 +16,4 @@ void main() {
fragColor1 = vec4(vec3(color.g), 1.0); // Green channel
fragColor2 = vec4(vec3(color.b), 1.0); // Blue channel
fragColor3 = vec4(vec3(color.a), 1.0); // Alpha channel
}
}