From 0ab875bdc9fbf84ecfce883b188410bb45882447 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Mon, 5 Dec 2016 20:34:03 +0200 Subject: [PATCH] Remove some methods that have been deprecated for a long while --- source/camera.h | 3 --- source/vertexarray.h | 3 --- 2 files changed, 6 deletions(-) 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(); -- 2.43.0