11 lines
156 B
GLSL
11 lines
156 B
GLSL
// MFX
|
|
// ---------
|
|
// IN: 7 / 0
|
|
// OUT: 0
|
|
|
|
in vec2 vUV;
|
|
layout(location = 0) out vec3 fragColor;
|
|
|
|
void main() {
|
|
fragColor = texture(frame7, vUV).xyz;
|
|
} |