mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-05 14:31:17 +12:00
log relevant settings
This commit is contained in:
parent
ebcb62a785
commit
6b784ad949
1 changed files with 6 additions and 1 deletions
|
@ -251,6 +251,11 @@ void InfoLog_PrintActiveSettings()
|
||||||
if (ActiveSettings::GetGraphicsAPI() == GraphicAPI::kVulkan)
|
if (ActiveSettings::GetGraphicsAPI() == GraphicAPI::kVulkan)
|
||||||
{
|
{
|
||||||
cemuLog_log(LogType::Force, "Async compile: {}", GetConfig().async_compile.GetValue() ? "true" : "false");
|
cemuLog_log(LogType::Force, "Async compile: {}", GetConfig().async_compile.GetValue() ? "true" : "false");
|
||||||
|
if (!GetConfig().vk_accurate_barriers.GetValue())
|
||||||
|
cemuLog_log(LogType::Force, "Accurate barriers are disabled!");
|
||||||
|
}
|
||||||
|
else if (ActiveSettings::GetGraphicsAPI() == GraphicAPI::kMetal)
|
||||||
|
{
|
||||||
cemuLog_log(LogType::Force, "Fast math: {}", GetConfig().fast_math.GetValue() ? "true" : "false");
|
cemuLog_log(LogType::Force, "Fast math: {}", GetConfig().fast_math.GetValue() ? "true" : "false");
|
||||||
if (!GetConfig().vk_accurate_barriers.GetValue())
|
if (!GetConfig().vk_accurate_barriers.GetValue())
|
||||||
cemuLog_log(LogType::Force, "Accurate barriers are disabled!");
|
cemuLog_log(LogType::Force, "Accurate barriers are disabled!");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue