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/qtoglcontextfactory.hpp')
-rw-r--r--drape_head/qtoglcontextfactory.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/drape_head/qtoglcontextfactory.hpp b/drape_head/qtoglcontextfactory.hpp
deleted file mode 100644
index 0ce63d77d5..0000000000
--- a/drape_head/qtoglcontextfactory.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-#include "drape/oglcontextfactory.hpp"
-#include "drape_head/qtoglcontext.hpp"
-
-#include <QtGui/QWindow>
-
-class QtOGLContextFactory : public dp::OGLContextFactory
-{
-public:
- QtOGLContextFactory(QWindow * surface);
- ~QtOGLContextFactory();
-
- virtual dp::OGLContext * getDrawContext();
- virtual dp::OGLContext * getResourcesUploadContext();
-
-private:
- QWindow * m_surface;
- QtOGLContext * m_drawContext;
- QtOGLContext * m_uploadContext;
-};