Vulkan: Avoid using Vulkan by default.

Bugs on Adreno, some issues on Intel and AMD.
Let's instead prefer Direct3D 11 or GLES for now.
This commit is contained in:
Unknown W. Brackets 2018-12-01 14:57:18 -08:00
parent 571ea0eec5
commit 8b6221e852

View file

@ -537,12 +537,6 @@ static int DefaultAndroidHwScale() {
} }
static int DefaultGPUBackend() { 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 PPSSPP_PLATFORM(WINDOWS)
// If no Vulkan, use Direct3D 11 on Windows 8+ (most importantly 10.) // If no Vulkan, use Direct3D 11 on Windows 8+ (most importantly 10.)
if (DoesVersionMatchWindows(6, 2, 0, 0, true)) { if (DoesVersionMatchWindows(6, 2, 0, 0, true)) {