3 This file is part of libmspgl
4 Copyright © 2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
8 #ifndef MSP_GL_VERTEXBUFFER_H_
9 #define MSP_GL_VERTEXBUFFER_H_
17 Deprecated. Equivalent to Buffer of type ARRAY_BUFFER. Retained for backwards
20 class VertexBuffer: public Buffer
23 VertexBuffer(): Buffer(ARRAY_BUFFER) { }
25 static void unbind() { Buffer::unbind(ARRAY_BUFFER); }