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 @@
// FX B
// -------------
// IN: 4 (SRC B)
// IN: 5 (SRC B)
// IN: 6 (FX B)
// OUT: 6 (A+B)
@@ -8,5 +8,5 @@ in vec2 vUV;
layout(location = 6) out vec3 fragColor;
void main() {
fragColor = fx_stage(vUV, frame4, frame6);
fragColor = fx_stage(vUV, frame5, frame6);
}