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
+4 -6
View File
@@ -1,12 +1,10 @@
// FX A
// -------------
// IN: 2 (SRC A)
// IN: 3 (FX A)
// OUT: 3 (A+B)
// SRC A
// -----------
// OUT: 5 (FX A)
in vec2 vUV;
out vec4 fragColor;
void main() {
fragColor = fx_stage(vUV, tex2, tex3, seed3);
fragColor = src_stage(vUV, seed3);
}