fix: update default project with internal buffer swap

This commit is contained in:
2026-05-15 16:36:57 +02:00
parent 365fee352e
commit 96f97d81df
10 changed files with 129 additions and 67 deletions
+5 -5
View File
@@ -2,20 +2,20 @@
// FX B
// -------------
// IN: 8 (SRC B)
// IN: 10 (FX B)
// OUT: 10 (A+B)
// IN: 6 (SRC B)
// IN: 8 (FX B)
// OUT: 8 (A+B)
in vec2 vUV;
out vec4 fragColor;
#include inc_fx.glsl
uniform sampler2D iTex6;
uniform sampler2D iTex8;
uniform sampler2D iTex10;
uniform int iSeed6;
uniform vec3 iGroup2_2[7];
void main() {
fragColor = fx_stage(vUV, iTex8, iTex10, iSeed6, iGroup2_2[0], iGroup2_2[1].xy, iGroup2_2[2], iGroup2_2[3].xy, iGroup2_2[4], iGroup2_2[5].xy, iGroup2_2[6]);
fragColor = fx_stage(vUV, iTex6, iTex8, iSeed6, iGroup2_2[0], iGroup2_2[1].xy, iGroup2_2[2], iGroup2_2[3].xy, iGroup2_2[4], iGroup2_2[5].xy, iGroup2_2[6]);
}