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