veloren/assets/voxygen/shaders/antialias/none.glsl
2022-09-10 10:56:22 +01:00

9 lines
208 B
GLSL

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