Display 480p content at full res with interlacing off

This commit is contained in:
Stuart Kenny 2022-02-10 16:33:40 +00:00
parent 70d1b26378
commit ab5d7681c1

View file

@ -111,7 +111,7 @@ void main()
TextureSize = global.SourceSize.xy;
ilfac = vec2(1.0, clamp(floor(global.SourceSize.y/200.0), 1.0, 2.0));
ilfac = vec2(1.0, clamp(floor(global.SourceSize.y/(interlace_detect == 1.0 ? 200.0 : 1000.0)), 1.0, 2.0));
// The size of one texel, in texture-coordinates.
v_one = ilfac / TextureSize.xy;