forked from organicmaps/organicmaps
[android] Ban Vulkan for Android 10.0.
This commit is contained in:
parent
dbacf60b5e
commit
3e30ee9bfe
1 changed files with 3 additions and 0 deletions
|
@ -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."));
|
||||
|
|
Loading…
Add table
Reference in a new issue