Files
forge-steel/default/frag4.glsl
T
klemek 6abf050bcc
Clang Lint CI / lint-no-video (push) Successful in 1m0s
Clang Build CI / run-no-video (push) Successful in 1m0s
Clang Build CI / run-video (push) Successful in 1m1s
Clang Build CI / build-release (push) Successful in 1m56s
Clang Lint CI / lint-video (push) Successful in 1m59s
refactor: not overlaping keyboard and midi
2026-05-14 22:27:39 +02:00

20 lines
355 B
GLSL

#version 460
// SRC B
// -----------
// OUT: 8 (FX B)
in vec2 vUV;
out vec4 fragColor;
#include inc_src.glsl
subroutine uniform src_stage_sub src_stage;
uniform int iSeed4;
uniform vec3 iGroup1_2[6];
void main() {
fragColor = src_stage(vUV, iSeed4, iGroup1_2[0], iGroup1_2[1].xy, iGroup1_2[2], iGroup1_2[3].xy, iGroup1_2[4], iGroup1_2[5].xy);
}