Browse Source

[video_core] Disable resolution rescaling pass on Android to avoid visual artifacts (#3353)

The rescaling optimization causes visual artifacts on Android (GLES). Disable the pass entirely on Android to preserve correct rendering.

Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3353
Reviewed-by: crueter <crueter@eden-emu.dev>
Reviewed-by: Maufeat <sahyno1996@gmail.com>
Co-authored-by: MaranBr <maranbr@outlook.com>
Co-committed-by: MaranBr <maranbr@outlook.com>
revertrevert
MaranBr 2 weeks ago
committed by crueter
parent
commit
9aa8e9b0a1
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 4
      src/common/settings.cpp

4
src/common/settings.cpp

@ -347,7 +347,11 @@ void TranslateResolutionInfo(ResolutionSetup setup, ResolutionScalingInfo& info)
}
info.up_factor = static_cast<f32>(info.up_scale) / (1U << info.down_shift);
info.down_factor = static_cast<f32>(1U << info.down_shift) / info.up_scale;
#ifdef __ANDROID__
info.active = false;
#else
info.active = true;
#endif
}
void UpdateRescalingInfo() {

Loading…
Cancel
Save