From ada72fca15145b5fdff08d20dfef5c6ffed8f5eb Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Thu, 1 Jun 2017 18:23:50 +0300 Subject: [PATCH] Removed Adreno 330 from AA-support list --- drape/support_manager.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drape/support_manager.cpp b/drape/support_manager.cpp index bd745335f4..5528f467bc 100644 --- a/drape/support_manager.cpp +++ b/drape/support_manager.cpp @@ -59,9 +59,8 @@ void SupportManager::Init() if (!settings::Get(kSupportedAntialiasing, val)) { #ifdef OMIM_OS_ANDROID - std::vector const models = {"Mali-G71", "Mali-T880", - "Adreno (TM) 540", "Adreno (TM) 530", - "Adreno (TM) 430", "Adreno (TM) 330"}; + std::vector const models = {"Mali-G71", "Mali-T880", "Adreno (TM) 540", + "Adreno (TM) 530", "Adreno (TM) 430"}; m_isAntialiasingEnabledByDefault = (std::find(models.begin(), models.end(), renderer) != models.end()); #else