fixed terrain rendering - visualized normals
[demo] / src / opengl / mesh-gl.h
index ab1ea07..833e2db 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,8 +30,10 @@ public:
        virtual ~MeshGL();
 
        virtual void draw() const override;
+       virtual void draw_normals(float scale) const override;
+       virtual void update_vertex_data() override;
 
        void destroy_vbo();
 };
 
-#endif // MESH_GL_H_
+#endif // MESH_GL_H_
\ No newline at end of file