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_head/qtoglcontext.hpp')
-rw-r--r--drape_head/qtoglcontext.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/drape_head/qtoglcontext.hpp b/drape_head/qtoglcontext.hpp
deleted file mode 100644
index 2bc7000de3..0000000000
--- a/drape_head/qtoglcontext.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-#include "drape/oglcontext.hpp"
-
-#include <QtGui/QWindow>
-#include <QtGui/QOpenGLContext>
-
-class QtOGLContext: public dp::OGLContext
-{
-public:
- QtOGLContext(QWindow * surface, QtOGLContext * contextToShareWith);
- ~QtOGLContext();
-
- virtual void present();
- virtual void makeCurrent();
- virtual void setDefaultFramebuffer();
-
-private:
- QOpenGLContext * m_nativeContext;
- QWindow * m_surface;
- bool m_isContextCreated;
-};