mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Add output scaling filtering options, migrate FSR checkbox to these options
This commit is contained in:
parent
bd69466e94
commit
240cb2d627
16 changed files with 118 additions and 32 deletions
|
@ -977,6 +977,14 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
|
|||
case gpu_preset_level::low: return tr("Low", "Shader Precision");
|
||||
}
|
||||
break;
|
||||
case emu_settings_type::OutputScalingMode:
|
||||
switch (static_cast<output_scaling_mode>(index))
|
||||
{
|
||||
case output_scaling_mode::nearest: return tr("Nearest", "Output Scaling Mode");
|
||||
case output_scaling_mode::bilinear: return tr("Bilinear", "Output Scaling Mode");
|
||||
case output_scaling_mode::fsr: return tr("FidelityFX Super Resolution", "Output Scaling Mode");
|
||||
}
|
||||
break;
|
||||
case emu_settings_type::AudioRenderer:
|
||||
switch (static_cast<audio_renderer>(index))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue