This commit is contained in:
2026-08-27 18:20:26 +02:00
parent a926cd6799
commit 029f9d4d0a
17 changed files with 359 additions and 368 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
#version 460
#version 330
// OUT
@@ -15,6 +15,6 @@ void main() {
vec2 uv = 1 - vUV;
// vec2 uv = vUV;
vec3 c = texture(iTex0, uv).xyz;
c = mix(c, 1 - c, write_int(uv * 20, vec2(0.1, 0.1), iFPS, 2));
c = mix(c, 1 - c, write_int(uv * 20, vec2(.1, .1), iFPS, 2));
fragColor = vec4(c, 1);
}