diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/shaders/dither_post_process.wgsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/shaders/dither_post_process.wgsl b/assets/shaders/dither_post_process.wgsl index 6440d0d..47f6735 100644 --- a/assets/shaders/dither_post_process.wgsl +++ b/assets/shaders/dither_post_process.wgsl @@ -18,7 +18,7 @@ fn fragment( let base_color = textureSample(screen_texture, screen_sampler, in.uv); let luma = (0.2126 * base_color.r + 0.7152 * base_color.g + 0.0722 * base_color.b); - let value = f32(luma >= threshold); + let value = f32(luma > threshold); return vec4f(value, value, value, 1.0); } |