11 lines
157 B
GLSL
11 lines
157 B
GLSL
// FX A
|
|
// ---------
|
|
// IN: 3 / 5
|
|
// OUT: 5
|
|
|
|
in vec2 vUV;
|
|
layout(location = 5) out vec3 fragColor;
|
|
|
|
void main() {
|
|
fragColor = texture(frame3, vUV).xyz;
|
|
} |