veloren/assets/voxygen/shaders/antialias/none.glsl
2021-06-02 23:59:48 -04:00

4 lines
148 B
GLSL

vec4 aa_apply(texture2D tex, sampler smplr, vec2 fragCoord, vec2 resolution) {
return texture(sampler2D(tex, smplr), fragCoord / resolution);
}