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 -5
View File
@@ -1,5 +1,4 @@
#version 460
#version 330
// SRC A
// -----------
@@ -10,11 +9,10 @@ out vec4 fragColor;
#include inc_src.glsl
subroutine uniform src_stage_sub src_stage;
uniform int iSeed1;
uniform int iState1;
uniform vec3 iGroup1_1[6];
void main() {
fragColor = src_stage(vUV, iSeed1, iGroup1_1[0], iGroup1_1[1].xy, iGroup1_1[2], iGroup1_1[3].xy, iGroup1_1[4], iGroup1_1[5].xy);
fragColor = src_stage(iState1, vUV, iSeed1, iGroup1_1[0], iGroup1_1[1].xy, iGroup1_1[2], iGroup1_1[3].xy, iGroup1_1[4], iGroup1_1[5].xy);
}