]> git.tdb.fi Git - libs/gl.git/commitdiff
Remove some methods that have been deprecated for a long while
authorMikko Rasa <tdb@tdb.fi>
Mon, 5 Dec 2016 18:34:03 +0000 (20:34 +0200)
committerMikko Rasa <tdb@tdb.fi>
Mon, 5 Dec 2016 18:34:03 +0000 (20:34 +0200)
source/camera.h
source/vertexarray.h

index 59cbaae3760599148a4a9de610ae3b6e514d3003..412d69ff56bb83cd222e26805ffe784dca66563e 100644 (file)
@@ -52,9 +52,6 @@ public:
        const Vector3 &get_look_direction() const { return look_dir; }
        const Vector3 &get_up_direction() const { return up_dir; }
 
-       /** Deprecated alias for get_view_matrix. */
-       const Matrix &get_matrix() const { return get_view_matrix(); }
-
        /** Returns the view matrix, used to transform coordinates from world space
        to eye space. */
        const Matrix &get_view_matrix() const { return view_matrix; }
index bf118eee3d7ff72133c2537e108d523222bb9eb5..6e54f681717f4269fb135f66bd18420b5d87943e 100644 (file)
@@ -68,9 +68,6 @@ private:
        static unsigned get_array_slot(unsigned char);
 
 public:
-       /// Deprecated alias for use_buffer
-       void use_vertex_buffer(Buffer *b) { use_buffer(b); }
-
        /// Clears all vertices from the array.
        void clear();