summaryrefslogtreecommitdiff
path: root/include/mbgl/gfx/renderer_backend.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2019-04-02 14:11:37 +0200
committerKonstantin Käfer <mail@kkaefer.com>2019-05-28 16:11:05 +0200
commit7f9274035bad30980e03574c315904ab7a85fe83 (patch)
tree7b9cd0f2e2883d6da22611eaa68fae07bb7245b6 /include/mbgl/gfx/renderer_backend.hpp
parent33ee7e23de24bd3c076eafef819029cf45451d23 (diff)
downloadqtlocation-mapboxgl-7f9274035bad30980e03574c315904ab7a85fe83.tar.gz
[core] refactor program object creation
Diffstat (limited to 'include/mbgl/gfx/renderer_backend.hpp')
-rw-r--r--include/mbgl/gfx/renderer_backend.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/mbgl/gfx/renderer_backend.hpp b/include/mbgl/gfx/renderer_backend.hpp
index 29f6b43a8f..aa76d7e502 100644
--- a/include/mbgl/gfx/renderer_backend.hpp
+++ b/include/mbgl/gfx/renderer_backend.hpp
@@ -30,6 +30,11 @@ public:
// Returns the device's context.
Context& getContext();
+ template <typename T>
+ T& getContext() {
+ return static_cast<T&>(getContext());
+ }
+
bool contextIsShared() const {
return contextMode == ContextMode::Shared;
}