mix stage

This commit is contained in:
2025-09-16 23:23:53 +02:00
parent 1fb48da6f8
commit 16128826a4
4 changed files with 35 additions and 13 deletions
+1 -2
View File
@@ -8,6 +8,5 @@ in vec2 vUV;
layout(location = 7) out vec3 fragColor;
void main() {
// TODO subroutine
fragColor = texture(frame5, vUV).xyz + texture(frame6, vUV).xyz;
fragColor = mix_stage(vUV, frame5, frame6);
}