veloren/assets/voxygen/shaders/antialias/fxaa.glsl
2022-10-27 01:15:20 +01:00

11 lines
221 B
GLSL

#include <fxaa.glsl>
vec4 aa_apply(
texture2D tex, sampler smplr,
texture2D depth_tex, sampler depth_smplr,
vec2 fragCoord,
vec2 resolution
) {
return fxaa_apply(tex, smplr, fragCoord, resolution);
}