Remove whitespace

This commit is contained in:
Margen67 2023-02-13 02:33:06 -08:00 committed by Megamouse
parent 75fbb3d551
commit 5bb89328d0
74 changed files with 170 additions and 170 deletions

View file

@ -90,7 +90,7 @@ vec4 sample_image(sampler2D tex, vec2 coord, float blur_strength)
{
vec4 original = texture(tex, coord);
if (blur_strength == 0) return original;
vec2 constraints = 1.f / vec2(640, 360);
vec2 res_offset = 1.f / textureSize(fs0, 0);
vec2 tex_offset = max(res_offset, constraints);