mirror of https://github.com/stella-emu/stella.git
R77: use QIS for scanlines w/o TV effects.
This commit is contained in:
parent
9ab2c435e5
commit
6739ada4f2
|
@ -32,7 +32,7 @@ namespace {
|
||||||
// Witv TV / and or scanline interpolation, the image has a height of ~480px. THe R77 runs at 720p, so there
|
// Witv TV / and or scanline interpolation, the image has a height of ~480px. THe R77 runs at 720p, so there
|
||||||
// is no benefit from QIS in y-direction. In addition, QIS on the R77 has performance issues if TV effects are
|
// is no benefit from QIS in y-direction. In addition, QIS on the R77 has performance issues if TV effects are
|
||||||
// enabled.
|
// enabled.
|
||||||
return settings.getBool("tia.inter") || settings.getInt("tv.filter") != 0 || settings.getInt("tv.scanlines") != 0
|
return settings.getBool("tia.inter") || settings.getInt("tv.filter") != 0
|
||||||
? FrameBuffer::ScalingInterpolation::blur
|
? FrameBuffer::ScalingInterpolation::blur
|
||||||
: FrameBuffer::ScalingInterpolation::sharp;
|
: FrameBuffer::ScalingInterpolation::sharp;
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue