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 'qt_tstfrm/tstwidgets.hpp')
-rw-r--r--qt_tstfrm/tstwidgets.hpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/qt_tstfrm/tstwidgets.hpp b/qt_tstfrm/tstwidgets.hpp
deleted file mode 100644
index a02ab3fa47..0000000000
--- a/qt_tstfrm/tstwidgets.hpp
+++ /dev/null
@@ -1,45 +0,0 @@
-#pragma once
-
-#include "graphics/opengl/texture.hpp"
-#include "graphics/opengl/renderbuffer.hpp"
-#include "graphics/opengl/framebuffer.hpp"
-
-#include "graphics/screen.hpp"
-
-#include "graphics/resource_manager.hpp"
-
-#include "map/qgl_render_context.hpp"
-
-#include "std/shared_ptr.hpp"
-
-#include <QtOpenGL/QGLWidget>
-
-namespace graphics
-{
- namespace gl
- {
- class Screen;
- }
-}
-
-namespace tst
-{
- class GLDrawWidget : public QGLWidget
- {
- public:
-
- shared_ptr<graphics::ResourceManager> m_resourceManager;
-
- shared_ptr<graphics::gl::FrameBuffer> m_primaryFrameBuffer;
- shared_ptr<qt::gl::RenderContext> m_primaryContext;
- shared_ptr<graphics::Screen> m_primaryScreen;
-
- virtual void initializeGL();
- virtual void resizeGL(int w, int h);
- virtual void paintGL();
-
- public:
-
- virtual void DoDraw(shared_ptr<graphics::Screen> const & screen) = 0;
- };
-}