mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-04 18:31:48 +00:00
Disable dual source blending on nvidia Android. See #8243
This commit is contained in:
parent
e72cc3321a
commit
8294a54a70
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user