Files
forge-steel/shaders/frag5.glsl
T
2025-09-15 23:39:18 +02:00

12 lines
184 B
GLSL

#version 460
// A+B
// ---------
// IN: 5 / 6
// OUT: 7
layout(location = 7) out vec3 fragColor;
void main() {
fragColor = texture(frame5, vUV).xyz + texture(frame6, vUV).xyz;
}