mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
GUI followup for https://github.com/RPCS3/rpcs3/pull/8148
This commit is contained in:
parent
b5dbb2eb36
commit
db4414ca87
4 changed files with 13 additions and 0 deletions
|
@ -23,6 +23,7 @@ enum class emu_settings_type
|
||||||
AccurateGETLLAR,
|
AccurateGETLLAR,
|
||||||
AccuratePUTLLUC,
|
AccuratePUTLLUC,
|
||||||
AccurateLLVMdfma,
|
AccurateLLVMdfma,
|
||||||
|
AccurateVectorNaN,
|
||||||
AccurateRSXAccess,
|
AccurateRSXAccess,
|
||||||
AccurateXFloat,
|
AccurateXFloat,
|
||||||
SetDAZandFTZ,
|
SetDAZandFTZ,
|
||||||
|
@ -161,6 +162,7 @@ static const QMap<emu_settings_type, cfg_location> settings_location =
|
||||||
{ emu_settings_type::AccurateGETLLAR, { "Core", "Accurate GETLLAR"}},
|
{ emu_settings_type::AccurateGETLLAR, { "Core", "Accurate GETLLAR"}},
|
||||||
{ emu_settings_type::AccuratePUTLLUC, { "Core", "Accurate PUTLLUC"}},
|
{ emu_settings_type::AccuratePUTLLUC, { "Core", "Accurate PUTLLUC"}},
|
||||||
{ emu_settings_type::AccurateLLVMdfma, { "Core", "LLVM Accurate DFMA"}},
|
{ emu_settings_type::AccurateLLVMdfma, { "Core", "LLVM Accurate DFMA"}},
|
||||||
|
{ emu_settings_type::AccurateVectorNaN, { "Core", "PPU LLVM Accurate Vector NaN values"}},
|
||||||
{ emu_settings_type::AccurateRSXAccess, { "Core", "Accurate RSX reservation access"}},
|
{ emu_settings_type::AccurateRSXAccess, { "Core", "Accurate RSX reservation access"}},
|
||||||
{ emu_settings_type::AccurateXFloat, { "Core", "Accurate xfloat"}},
|
{ emu_settings_type::AccurateXFloat, { "Core", "Accurate xfloat"}},
|
||||||
{ emu_settings_type::SetDAZandFTZ, { "Core", "Set DAZ and FTZ"}},
|
{ emu_settings_type::SetDAZandFTZ, { "Core", "Set DAZ and FTZ"}},
|
||||||
|
|
|
@ -930,6 +930,9 @@ settings_dialog::settings_dialog(std::shared_ptr<gui_settings> gui_settings, std
|
||||||
SubscribeTooltip(ui->accurateLLVMdfma, tooltips.settings.accurate_llvm_dfma);
|
SubscribeTooltip(ui->accurateLLVMdfma, tooltips.settings.accurate_llvm_dfma);
|
||||||
ui->accurateLLVMdfma->setDisabled(utils::has_fma3() || utils::has_fma4());
|
ui->accurateLLVMdfma->setDisabled(utils::has_fma3() || utils::has_fma4());
|
||||||
|
|
||||||
|
m_emu_settings->EnhanceCheckBox(ui->AccurateVectorNaN, emu_settings_type::AccurateVectorNaN);
|
||||||
|
SubscribeTooltip(ui->AccurateVectorNaN, tooltips.settings.accurate_vector_nan);
|
||||||
|
|
||||||
m_emu_settings->EnhanceCheckBox(ui->silenceAllLogs, emu_settings_type::SilenceAllLogs);
|
m_emu_settings->EnhanceCheckBox(ui->silenceAllLogs, emu_settings_type::SilenceAllLogs);
|
||||||
SubscribeTooltip(ui->silenceAllLogs, tooltips.settings.silence_all_logs);
|
SubscribeTooltip(ui->silenceAllLogs, tooltips.settings.silence_all_logs);
|
||||||
|
|
||||||
|
|
|
@ -1799,6 +1799,13 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="AccurateVectorNaN">
|
||||||
|
<property name="text">
|
||||||
|
<string>PPU LLVM Accurate Vector NaNs</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="silenceAllLogs">
|
<widget class="QCheckBox" name="silenceAllLogs">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|
|
@ -79,6 +79,7 @@ public:
|
||||||
const QString accurate_getllar = tr("Never use this.");
|
const QString accurate_getllar = tr("Never use this.");
|
||||||
const QString accurate_putlluc = tr("Never use this.");
|
const QString accurate_putlluc = tr("Never use this.");
|
||||||
const QString accurate_llvm_dfma = tr("Provides extra accuracy on FMA instructions at the cost of performance.\nWhile disabling it might give a decent performance boost if your CPU doesn't support FMA, it may also introduce subtle bugs that otherwise do not occur.\nYou can't disable it if your CPU supports FMA.");
|
const QString accurate_llvm_dfma = tr("Provides extra accuracy on FMA instructions at the cost of performance.\nWhile disabling it might give a decent performance boost if your CPU doesn't support FMA, it may also introduce subtle bugs that otherwise do not occur.\nYou can't disable it if your CPU supports FMA.");
|
||||||
|
const QString accurate_vector_nan = tr("Forces the floating point NaN (Not A Number) values outputted from PPU vector instructions to be accurate to the real hardware. (0x7FC00000)");
|
||||||
const QString accurate_rsx_access = tr("Never use this.");
|
const QString accurate_rsx_access = tr("Never use this.");
|
||||||
const QString hook_static_functions = tr("Allows to hook some functions like 'memcpy' replacing them with high-level implementations. May do nothing or break things. Experimental.");
|
const QString hook_static_functions = tr("Allows to hook some functions like 'memcpy' replacing them with high-level implementations. May do nothing or break things. Experimental.");
|
||||||
const QString gl_legacy_buffers = tr("Enables use of classic OpenGL buffers which allows capturing tools to work with RPCS3 e.g RenderDoc.\nIf unsure, don't use this option.");
|
const QString gl_legacy_buffers = tr("Enables use of classic OpenGL buffers which allows capturing tools to work with RPCS3 e.g RenderDoc.\nIf unsure, don't use this option.");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue