diff --git a/drape/framebuffer.cpp b/drape/framebuffer.cpp index cef169a37c..010cd4d5cd 100644 --- a/drape/framebuffer.cpp +++ b/drape/framebuffer.cpp @@ -1,6 +1,5 @@ #include "drape/framebuffer.hpp" #include "drape/glfunctions.hpp" -#include "drape/support_manager.hpp" #include "base/assert.hpp" #include "base/logging.hpp" @@ -112,12 +111,6 @@ void Framebuffer::SetSize(uint32_t width, uint32_t height) if (!m_isSupported) return; - if (!SupportManager::Instance().IsFramebufferSupported()) - { - m_isSupported = false; - return; - } - if (m_width == width && m_height == height) return; diff --git a/drape/support_manager.cpp b/drape/support_manager.cpp index beac26753f..5528f467bc 100644 --- a/drape/support_manager.cpp +++ b/drape/support_manager.cpp @@ -5,10 +5,6 @@ #include "base/logging.hpp" -#ifdef OMIM_OS_ANDROID -#include "android/jni/com/mapswithme/platform/Platform.hpp" -#endif - #include "3party/Alohalytics/src/alohalytics.h" #include @@ -72,17 +68,6 @@ void SupportManager::Init() #endif settings::Set(kSupportedAntialiasing, m_isAntialiasingEnabledByDefault); } - - // Disable framebuffer for old Android OS versions. -#ifdef OMIM_OS_ANDROID - int constexpr kMinSdkVersionForFramebuffer = 18; - int const sdkVersion = android::GetAndroidSdkVersion(); - if (sdkVersion != 0) - m_isFramebufferSupported = (sdkVersion >= kMinSdkVersionForFramebuffer); - - if (!m_isFramebufferSupported) - LOG(LINFO, ("Framebuffer is not supported on Android API level ", sdkVersion)); -#endif } SupportManager & SupportManager::Instance() diff --git a/drape/support_manager.hpp b/drape/support_manager.hpp index 4b2bb14a83..e7a9df6aa9 100644 --- a/drape/support_manager.hpp +++ b/drape/support_manager.hpp @@ -20,7 +20,6 @@ public: bool IsTegraDevice() const { return m_isTegra; } int GetMaxLineWidth() const { return m_maxLineWidth; } bool IsAntialiasingEnabledByDefault() const { return m_isAntialiasingEnabledByDefault; } - bool IsFramebufferSupported() const { return m_isFramebufferSupported; } private: SupportManager() = default; @@ -30,7 +29,6 @@ private: bool m_isTegra = false; int m_maxLineWidth = 1; bool m_isAntialiasingEnabledByDefault = false; - bool m_isFramebufferSupported = true; DISALLOW_COPY_AND_MOVE(SupportManager); }; diff --git a/drape_frontend/frontend_renderer.cpp b/drape_frontend/frontend_renderer.cpp index 540a684f02..7cfd064c73 100755 --- a/drape_frontend/frontend_renderer.cpp +++ b/drape_frontend/frontend_renderer.cpp @@ -1227,10 +1227,13 @@ void FrontendRenderer::Render3dLayer(ScreenBase const & modelView, bool useFrame ASSERT(m_buildingsFramebuffer->IsSupported(), ()); m_buildingsFramebuffer->Enable(); GLFunctions::glClearColor(0.0f, 0.0f, 0.0f, 0.0f); - GLFunctions::glClear(gl_const::GLColorBit); + GLFunctions::glClear(gl_const::GLColorBit | gl_const::GLDepthBit); + } + else + { + GLFunctions::glClear(gl_const::GLDepthBit); } - GLFunctions::glClear(gl_const::GLDepthBit); GLFunctions::glEnable(gl_const::GLDepthTest); layer.Sort(make_ref(m_overlayTree));