From: Mikko Rasa Date: Sun, 15 Dec 2013 18:02:46 +0000 (+0200) Subject: Add some accessors to Buffer X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=7015197bb127b92519cd93a2031a5c188d3fbd76 Add some accessors to Buffer --- 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);