Skip to content

Commit

Permalink
Vulkan: Avoid using Vulkan by default.
Browse files Browse the repository at this point in the history
Bugs on Adreno, some issues on Intel and AMD.
Let's instead prefer Direct3D 11 or GLES for now.
  • Loading branch information
unknownbrackets committed Dec 1, 2018
1 parent 571ea0e commit 8b6221e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Core/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -537,12 +537,6 @@ static int DefaultAndroidHwScale() {
}

static int DefaultGPUBackend() {
#if PPSSPP_PLATFORM(WINDOWS) || PPSSPP_PLATFORM(ANDROID)
// Where supported, let's use Vulkan.
if (VulkanMayBeAvailable()) {
return (int)GPUBackend::VULKAN;
}
#endif
#if PPSSPP_PLATFORM(WINDOWS)
// If no Vulkan, use Direct3D 11 on Windows 8+ (most importantly 10.)
if (DoesVersionMatchWindows(6, 2, 0, 0, true)) {
Expand Down

0 comments on commit 8b6221e

Please sign in to comment.