12 lines
158 B
GLSL
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;
|
|
} |