[android] Ban Vulkan for Android 10.0.

This commit is contained in:
Daria Volvenkova 2020-02-12 21:05:15 +03:00 committed by Aleksandr Zatsepin
parent dbacf60b5e
commit 3e30ee9bfe

View file

@ -187,8 +187,11 @@ bool Framework::CreateDrapeEngine(JNIEnv * env, jobject jSurface, int densityDpi
// Vulkan is supported only since Android 8.0, because some Android devices with Android 7.x
// have fatal driver issue, which can lead to process termination and whole OS destabilization.
int constexpr kMinSdkVersionForVulkan = 26;
// Ban Vulkan temporarily for Android 10.0 because of unfixed rendering artifacts.
int constexpr kMaxSdkVersionForVulkan = 28;
int const sdkVersion = GetAndroidSdkVersion();
auto const vulkanForbidden = sdkVersion < kMinSdkVersionForVulkan ||
sdkVersion > kMaxSdkVersionForVulkan ||
dp::SupportManager::Instance().IsVulkanForbidden();
if (vulkanForbidden)
LOG(LWARNING, ("Vulkan API is forbidden on this device."));