working 6-stage fragments

This commit is contained in:
2025-09-15 11:39:29 +02:00
parent bfd1abcac7
commit 858d504528
14 changed files with 204 additions and 76 deletions
+19
View File
@@ -0,0 +1,19 @@
#version 460
uniform float iTime;
uniform vec2 iResolution;
uniform sampler2D frame3;
uniform sampler2D frame5;
in vec2 vUV;
layout(location = 5) out vec3 fragColor;
// FX A
// ---------
// IN: 3 / 5
// OUT: 5
void main() {
fragColor = texture(frame3, vUV).xyz;
}