veloren/assets/voxygen/shaders/antialias/fxaa.glsl

11 lines
226 B
Plaintext
Raw Normal View History

2022-10-25 20:46:55 +00:00
#include <fxaa.glsl>
2022-09-10 09:56:22 +00:00
vec4 aa_apply(
texture2D tex, sampler smplr,
texture2D depth_tex, sampler depth_smplr,
vec2 fragCoord,
vec2 resolution
) {
return fxaa_apply(tex, smplr, fragCoord, resolution, 1.0);
2019-11-18 10:36:48 +00:00
}