From 7015197bb127b92519cd93a2031a5c188d3fbd76 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 15 Dec 2013 20:02:46 +0200 Subject: [PATCH] Add some accessors to Buffer --- source/buffer.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/buffer.h b/source/buffer.h index b3a2902f..858f502d 100644 --- a/source/buffer.h +++ b/source/buffer.h @@ -58,6 +58,12 @@ private: static void require_buffer_type(BufferType); public: + /** Returns the OpenGL ID of the buffer. For internal use only. */ + unsigned get_id() const { return id; } + + /** Returns the default binding type for the buffer. */ + BufferType get_type() const { return type; } + /** Sets the usage hint of the buffer. It will take effect the next time the buffer's contents are defined. */ void set_usage(BufferUsage); -- 2.43.0