This commit is contained in:
2025-09-21 20:32:06 +02:00
parent 13bcba1c5b
commit 432f05cc56
15 changed files with 174 additions and 131 deletions
+6 -6
View File
@@ -1,12 +1,12 @@
// MFX
// ------------
// IN: 7 (A+B)
// IN: 0 (OUT)
// OUT: 0 (OUT)
// FX B
// -------------
// IN: 6 (SRC B)
// IN: 8 (FX B)
// OUT: 8 (A+B)
in vec2 vUV;
out vec4 fragColor;
void main() {
fragColor = fx_stage(vUV, tex7, tex0, seed6);
fragColor = fx_stage(vUV, tex6, tex8, seed6);
}