add an option to use the host memory instead of buffer cache

This commit is contained in:
Samuliak 2024-11-03 12:09:47 +01:00
parent ab41de4f9f
commit 03d4e86b61
No known key found for this signature in database
6 changed files with 26 additions and 9 deletions

View file

@ -258,6 +258,7 @@ void InfoLog_PrintActiveSettings()
{
cemuLog_log(LogType::Force, "Async compile: {}", GetConfig().async_compile.GetValue() ? "true" : "false");
cemuLog_log(LogType::Force, "Fast math: {}", GetConfig().fast_math.GetValue() ? "true" : "false");
cemuLog_log(LogType::Force, "Use host memory for cache: {}", g_current_game_profile->UseHostMemForCache() ? "true" : "false");
if (!GetConfig().vk_accurate_barriers.GetValue())
cemuLog_log(LogType::Force, "Accurate barriers are disabled!");
}