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

12 lines
158 B
GLSL

#version 460
// FX B
// ---------
// IN: 4 / 6
// OUT: 6
layout(location = 6) out vec3 fragColor;
void main() {
fragColor = texture(frame4, vUV).xyz;
}