From: Mikko Rasa Date: Mon, 5 Dec 2016 18:34:03 +0000 (+0200) Subject: Remove some methods that have been deprecated for a long while X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=0ab875bdc9fbf84ecfce883b188410bb45882447 Remove some methods that have been deprecated for a long while --- diff --git a/source/camera.h b/source/camera.h index 59cbaae3..412d69ff 100644 --- a/source/camera.h +++ b/source/camera.h @@ -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; } diff --git a/source/vertexarray.h b/source/vertexarray.h index bf118eee..6e54f681 100644 --- a/source/vertexarray.h +++ b/source/vertexarray.h @@ -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();