will try some openGL on android

This commit is contained in:
2016-07-15 15:21:44 +02:00
parent 43148f4d54
commit b188cb992c
4 changed files with 145 additions and 17 deletions

26
map/MapView.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef MAPVIEW_H
#define MAPVIEW_H
#include <QGLWidget>
class MapView : public QGLWidget {
public:
MapView(QWidget* parent = 0);
protected:
void initializeGL();
void paintGL();
void resizeGL(int width, int height);
private:
void draw();
};
#endif // MAPVIEW_H