X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvertexarraybuilder.h;h=575a47535e9a22ecc5bf5bad91e5343a836790d3;hb=HEAD;hp=54357677d9fe671d99b63d6b68c9b2df1210c78f;hpb=85facfb688035b5bbc9a3a87d080582fbf34930b;p=libs%2Fgl.git diff --git a/source/vertexarraybuilder.h b/source/vertexarraybuilder.h deleted file mode 100644 index 54357677..00000000 --- a/source/vertexarraybuilder.h +++ /dev/null @@ -1,38 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_VERTEXARRAYBUIDER_H_ -#define MSP_GL_VERTEXARRAYBUIDER_H_ - -#include -#include "vertexbuilder.h" -#include "vertexformat.h" - -namespace Msp { -namespace GL { - -class VertexArray; - -class VertexArrayBuilder: public VertexBuilder -{ -public: - std::vector &data; - - VertexArrayBuilder(VertexArray &, std::vector &); - ~VertexArrayBuilder(); - -private: - VertexArray &array; - - VertexArrayBuilder(const VertexArrayBuilder &); - virtual void vertex_(float, float, float, float); -}; - -} // namespace GL -} // namespace Msp - -#endif