summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2022-10-08 22:24:30 +0200
committerGitHub <noreply@github.com>2022-10-08 22:24:30 +0200
commitda27a3e6bcbc083fcfb58aca814cc0be2d3e2501 (patch)
treee62eee059dd3d2e2a535795a2bb5cc8e5d16957c /Source/Core
parent1dd30b58f3e7d9cab274b032ab0e9007f1af3c32 (diff)
parent4e204a9a1a6bc1f0ef5402f3163d3d27338395c2 (diff)
Merge pull request #11095 from K0bin/misc-vulkan
Remove special treatment for Android in video settings
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Config/GraphicsSettings.cpp7
-rw-r--r--Source/Core/VideoCommon/VideoConfig.h4
2 files changed, 0 insertions, 11 deletions
diff --git a/Source/Core/Core/Config/GraphicsSettings.cpp b/Source/Core/Core/Config/GraphicsSettings.cpp
index e5056678bd..6f0ee5940c 100644
--- a/Source/Core/Core/Config/GraphicsSettings.cpp
+++ b/Source/Core/Core/Config/GraphicsSettings.cpp
@@ -69,17 +69,10 @@ const Info<bool> GFX_BORDERLESS_FULLSCREEN{{System::GFX, "Settings", "Borderless
const Info<bool> GFX_ENABLE_VALIDATION_LAYER{{System::GFX, "Settings", "EnableValidationLayer"},
false};
-#if defined(ANDROID)
-const Info<bool> GFX_BACKEND_MULTITHREADING{{System::GFX, "Settings", "BackendMultithreading"},
- false};
-const Info<int> GFX_COMMAND_BUFFER_EXECUTE_INTERVAL{
- {System::GFX, "Settings", "CommandBufferExecuteInterval"}, 0};
-#else
const Info<bool> GFX_BACKEND_MULTITHREADING{{System::GFX, "Settings", "BackendMultithreading"},
true};
const Info<int> GFX_COMMAND_BUFFER_EXECUTE_INTERVAL{
{System::GFX, "Settings", "CommandBufferExecuteInterval"}, 100};
-#endif
const Info<bool> GFX_SHADER_CACHE{{System::GFX, "Settings", "ShaderCache"}, true};
const Info<bool> GFX_WAIT_FOR_SHADERS_BEFORE_STARTING{
diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h
index ff52e96bde..579cf5e30a 100644
--- a/Source/Core/VideoCommon/VideoConfig.h
+++ b/Source/Core/VideoCommon/VideoConfig.h
@@ -152,11 +152,7 @@ struct VideoConfig final
bool bEnableValidationLayer = false;
// Multithreaded submission, currently only supported with Vulkan.
-#if defined(ANDROID)
- bool bBackendMultithreading = false;
-#else
bool bBackendMultithreading = true;
-#endif
// Early command buffer execution interval in number of draws.
// Currently only supported with Vulkan.