diff options
Diffstat (limited to 'src/effects/ntsc.wgsl')
| -rw-r--r-- | src/effects/ntsc.wgsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/ntsc.wgsl b/src/effects/ntsc.wgsl index e0182f3..3ee02bc 100644 --- a/src/effects/ntsc.wgsl +++ b/src/effects/ntsc.wgsl @@ -140,7 +140,7 @@ fn randomized_f32(p: vec2f, t: f32) -> f32 { var col = yiqa_to_rgba(signal); // Slight NTSC warm tint (boost red/green, attenuate blue) col *= vec4f(1.04, 1.01, .94, 1.); -// col = Dither(col, uv, XSIZE, YSIZE); +// col = dither_c64(col, uv, XSIZE, YSIZE); let border_col = get_border_c64(uv, uniforms.beat_time, YSIZE); |
