]> git.tdb.fi Git - libs/gl.git/blobdiff - source/view.h
Remove various old deprecated things
[libs/gl.git] / source / view.h
index 6aca12f1a117ab3d3c0f14ffdfb565075d289d0b..cf0f4d64ed8d8feceabdcf10522782ce97c335b0 100644 (file)
@@ -19,9 +19,8 @@ protected:
        Framebuffer ⌖
        Camera *camera;
        Renderable *content;
-       std::list<Camera *> synced_cameras;
 
-       View();
+       View(Framebuffer &);
 
 public:
        virtual unsigned get_width() const { return target.get_width(); }
@@ -31,10 +30,6 @@ public:
        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();
 };