armory/Shaders/combine_pass/combine_pass.frag.glsl
2017-12-13 14:44:21 +01:00

12 lines
192 B
GLSL
Executable file

#version 450
uniform sampler2D tex;
uniform sampler2D tex2;
in vec2 texCoord;
out vec4 fragColor;
void main() {
fragColor.rgb = texture(tex, texCoord).rgb + texture(tex2, texCoord).rgb;
}