added morphing to the cow
[demo] / src / renderer.h
index 07db322..a14d69c 100644 (file)
@@ -5,6 +5,7 @@ class OrbitCamera;
 class Object;
 class Scene;
 class ShaderProgram;
+class Texture;
 
 class Renderer {
 protected:
@@ -16,10 +17,13 @@ protected:
 
        ShaderProgram *sprog;
 
+       /* debug shader to draw normals */
+       ShaderProgram *nprog;
+
        Texture *skytex, *dskytex;
 
        virtual void draw_object(Object *object) const;
-       virtual void draw_skybox();
+       virtual void draw_skybox() const;
 
 public:
        Scene *scene;