debug shader

This commit is contained in:
2025-09-20 20:02:29 +02:00
parent ce1d0dba60
commit 3d5a6fc6ac
7 changed files with 135 additions and 28 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
// MFX
// ------------
// IN: 8 (A+B)
// IN: 7 (A+B)
// IN: 0 (OUT)
// OUT: 0 (OUT)
@@ -8,5 +8,5 @@ in vec2 vUV;
out vec4 fragColor;
void main() {
fragColor = fx_stage(vUV, tex8, tex0, seed6);
fragColor = fx_stage(vUV, tex7, tex0, seed6);
}