]> git.tdb.fi Git - libs/gl.git/blobdiff - source/view.h
Fix a bug in ProgramData when all uniforms in a block are removed
[libs/gl.git] / source / view.h
index 08629fa065ab159725a5d025ca0b4dc1093f488b..6aca12f1a117ab3d3c0f14ffdfb565075d289d0b 100644 (file)
@@ -26,12 +26,13 @@ protected:
 public:
        virtual unsigned get_width() const { return target.get_width(); }
        virtual unsigned get_height() const { return target.get_height(); }
-       float get_aspect() const { return static_cast<float>(get_width())/get_height(); }
+       float get_aspect_ratio() const { return static_cast<float>(get_width())/get_height(); }
 
        void set_camera(Camera *);
        void set_content(Renderable *);
 
        // Deprecated
+       float get_aspect() const { return get_aspect_ratio(); }
        void synchronize_camera_aspect(Camera &);
 
        virtual void render();