X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fvertexarraybuilder.h;h=575a47535e9a22ecc5bf5bad91e5343a836790d3;hp=54357677d9fe671d99b63d6b68c9b2df1210c78f;hb=f141ae14619bfbd51a7e6871c55edbdd17ac3417;hpb=85facfb688035b5bbc9a3a87d080582fbf34930b diff --git a/source/vertexarraybuilder.h b/source/vertexarraybuilder.h index 54357677..575a4753 100644 --- a/source/vertexarraybuilder.h +++ b/source/vertexarraybuilder.h @@ -1,10 +1,3 @@ -/* $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_ @@ -19,17 +12,15 @@ class VertexArray; class VertexArrayBuilder: public VertexBuilder { -public: - std::vector &data; - - VertexArrayBuilder(VertexArray &, std::vector &); - ~VertexArrayBuilder(); - private: - VertexArray &array; + VertexArray &array; VertexArrayBuilder(const VertexArrayBuilder &); - virtual void vertex_(float, float, float, float); +public: + VertexArrayBuilder(VertexArray &); + +private: + virtual void vertex_(const Vector4 &); }; } // namespace GL