X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvertexarraybuilder.h;h=575a47535e9a22ecc5bf5bad91e5343a836790d3;hb=HEAD;hp=0065c536b8aa52b297d9111d821e26d77fe74d63;hpb=16f6f15328b3a6eec87b1b5e5822368966d44a38;p=libs%2Fgl.git diff --git a/source/vertexarraybuilder.h b/source/vertexarraybuilder.h deleted file mode 100644 index 0065c536..00000000 --- a/source/vertexarraybuilder.h +++ /dev/null @@ -1,36 +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: - VertexArrayBuilder(VertexArray &); - ~VertexArrayBuilder(); - -private: - VertexArray &array; - - VertexArrayBuilder(const VertexArrayBuilder &); - virtual void vertex_(float, float, float, float); -}; - -} // namespace GL -} // namespace Msp - -#endif