armory/Shaders/include/pass_copy.frag.glsl
2017-12-20 15:37:58 +01:00

11 lines
130 B
GLSL

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