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

11 lines
130 B
GLSL

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