buffer allocation
[demo] / src / opengl / mesh-gl.h
index ab1ea07..ca4c058 100644 (file)
@@ -18,8 +18,9 @@ private:
 
        void update_vbo();
 
-protected:
-       virtual void update_vertex_data() override;
+       /* used by draw_normals to debug stuff: */
+       mutable unsigned int nvao;
+       mutable unsigned int nvbo;
 
 public:
        MeshGL();
@@ -29,6 +30,8 @@ public:
        virtual ~MeshGL();
 
        virtual void draw() const override;
+       virtual void draw_normals(float scale) const override;
+       virtual bool update_vertex_data() override;
 
        void destroy_vbo();
 };