worked on android port

opengl1 -> es
This commit is contained in:
root
2018-01-31 17:15:11 +01:00
parent a9bab839b2
commit e5e19779d5
53 changed files with 884 additions and 203 deletions

View File

@@ -2,12 +2,13 @@
#define MV3DELEMENT_H
#include "MapView3D.h"
#include "misc/Renderable3D.h"
/**
* represents one drawable
* element shown within the MapView3D
*/
class MV3DElement {
class MV3DElement : public Renderable3D {
public:
@@ -16,8 +17,8 @@ public:
public:
/** repaint me */
virtual void paintGL() = 0;
/** OLD: repaint me */
//virtual void paintGL() = 0;
/** is this a transparent element? */
virtual bool isTransparent() const = 0;