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

9 lines
208 B
Plaintext
Raw Normal View History

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
) {
2020-12-13 04:01:07 +00:00
return texture(sampler2D(tex, smplr), fragCoord / resolution);
}