Disable dual source blending on nvidia Android. See #8243

This commit is contained in:
Henrik Rydgard 2016-06-05 09:14:33 +02:00
parent e72cc3321a
commit 8294a54a70

View File

@ -492,7 +492,14 @@ void GPU_GLES::CheckGPUFeatures() {
// Don't use this extension to off on sub 3.0 OpenGL versions as it does not seem reliable
// Also on Intel, see https://github.com/hrydgard/ppsspp/issues/4867
} else {
#ifdef ANDROID
// This appears to be broken on nVidia Shield TV.
if (gl_extensions.gpuVendor != GPU_VENDOR_NVIDIA) {
features |= GPU_SUPPORTS_DUALSOURCE_BLEND;
}
#else
features |= GPU_SUPPORTS_DUALSOURCE_BLEND;
#endif
}
}