wip config

This commit is contained in:
2025-09-18 20:27:00 +02:00
parent e811d404a1
commit 998c2cb222
14 changed files with 93 additions and 37 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
// A+B
// ------------
// IN: 5 (FX A)
// IN: 3 (FX A)
// IN: 6 (FX B)
// OUT: 7 (MFX)
@@ -8,5 +8,5 @@ in vec2 vUV;
layout(location = 7) out vec3 fragColor;
void main() {
fragColor = mix_stage(vUV, frame5, frame6, sin(iTime * 0.25) * 0.3 + 0.3); // TODO tmp
fragColor = mix_stage(vUV, frame3, frame6, sin(iTime * 0.25) * 0.3 + 0.3); // TODO tmp
}