armory/Shaders/include/pass_copy.frag.glsl

11 lines
138 B
Plaintext
Raw Permalink Normal View History

2016-08-07 01:43:21 +02:00
#version 450
uniform sampler2D tex;
in vec2 texCoord;
2016-10-12 17:52:27 +02:00
out vec4 fragColor;
2016-08-07 01:43:21 +02:00
void main() {
2018-12-06 15:23:08 +01:00
fragColor = textureLod(tex, texCoord, 0.0);
2016-08-07 01:43:21 +02:00
}