Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'drape/support_manager.hpp')
-rw-r--r--drape/support_manager.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/drape/support_manager.hpp b/drape/support_manager.hpp
index e7a9df6aa9..4b2bb14a83 100644
--- a/drape/support_manager.hpp
+++ b/drape/support_manager.hpp
@@ -20,6 +20,7 @@ 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;
@@ -29,6 +30,7 @@ private:
bool m_isTegra = false;
int m_maxLineWidth = 1;
bool m_isAntialiasingEnabledByDefault = false;
+ bool m_isFramebufferSupported = true;
DISALLOW_COPY_AND_MOVE(SupportManager);
};