game.codecraft-graphics_2.11.0.7.0.source-code.texture_xy_fs.glsl Maven / Gradle / Ivy
The newest version!
#version 400
in vec2 TexCoords;
out vec4 color;
uniform sampler2D screenTexture;
void main()
{
color = texture(screenTexture, TexCoords);
}