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
// A+B
// ------------
@@ -27,7 +27,7 @@ void main() {
float k = mean(color_a);
mix_value = mix(mix_value, mix_value * 0.9 + 0.05, iDemo);
mix_value = mix(mix_value, mix_value * .9 + .05, iDemo);
if (mix_type) {
fragColor = mix(color_a, color_b, step(mix_value, k));