From 7de1f6891c3d35fb991afc7317cb0e4f4dd2d0a4 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Mon, 17 Jul 2023 15:30:25 -0300 Subject: [PATCH] [drape] Forbid Vulkan for Adreno 418. Signed-off-by: Viktor Govako --- drape/support_manager.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drape/support_manager.cpp b/drape/support_manager.cpp index 9dc707cd16..3368883ba6 100644 --- a/drape/support_manager.cpp +++ b/drape/support_manager.cpp @@ -112,9 +112,12 @@ bool SupportManager::IsVulkanForbidden() const bool SupportManager::IsVulkanForbidden(std::string const & deviceName, Version apiVersion, Version driverVersion) const { - /// @todo Should we ban all PowerVR Rogue devices? static char const * kBannedDevices[] = { - "PowerVR Rogue G6110", "PowerVR Rogue GE8100", "PowerVR Rogue GE8300" + /// @todo Should we ban all PowerVR Rogue devices? + // https://github.com/organicmaps/organicmaps/issues/1379 + "PowerVR Rogue G6110", "PowerVR Rogue GE8100", "PowerVR Rogue GE8300", + // https://github.com/organicmaps/organicmaps/issues/5539 + "Adreno (TM) 418", }; // On these configurations we've detected fatal driver-specific Vulkan errors.