This commit is contained in:
2026-08-27 18:20:26 +02:00
parent a926cd6799
commit 029f9d4d0a
17 changed files with 359 additions and 368 deletions
+3 -4
View File
@@ -1,4 +1,4 @@
#version 460
#version 330
// SRC B
// -----------
@@ -9,11 +9,10 @@ out vec4 fragColor;
#include inc_src.glsl
subroutine uniform src_stage_sub src_stage;
uniform int iSeed2;
uniform int iState2;
uniform vec3 iGroup1_2[6];
void main() {
fragColor = src_stage(vUV, iSeed2, iGroup1_2[0], iGroup1_2[1].xy, iGroup1_2[2], iGroup1_2[3].xy, iGroup1_2[4], iGroup1_2[5].xy);
fragColor = src_stage(iState2, vUV, iSeed2, iGroup1_2[0], iGroup1_2[1].xy, iGroup1_2[2], iGroup1_2[3].xy, iGroup1_2[4], iGroup1_2[5].xy);
}