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:
authorDmitry Kunin <dkunin@mapswith.me>2013-12-25 15:41:07 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:09:23 +0300
commit1fb2f88afd9c14d2d38e0d8c1c4248690415768d (patch)
tree62de89cf6fe536011f6d13b64cfbc84240f5bc40 /drape/oglcontext.hpp
parent77cac309a21bbedca019530b581e5c99d6d71ea5 (diff)
Base OGLContext + Qt impl.
Diffstat (limited to 'drape/oglcontext.hpp')
-rw-r--r--drape/oglcontext.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/drape/oglcontext.hpp b/drape/oglcontext.hpp
new file mode 100644
index 0000000000..6d2ef6ed2c
--- /dev/null
+++ b/drape/oglcontext.hpp
@@ -0,0 +1,8 @@
+#pragma once
+
+class OGLContext
+{
+public:
+ virtual void present() = 0;
+ virtual void makeCurrent() = 0;
+};