X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fvertexarraybuilder.h;h=575a47535e9a22ecc5bf5bad91e5343a836790d3;hp=0b8eef860c2b36952a2fc73d058e81de19d6701b;hb=e37d3b91500994df3de4fe47bd3d3e75d3104b46;hpb=e92458a4a0e6191bff549a8b316dbbbd7c56e90f diff --git a/source/vertexarraybuilder.h b/source/vertexarraybuilder.h index 0b8eef86..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; +private: + VertexArray &array; + VertexArrayBuilder(const VertexArrayBuilder &); +public: VertexArrayBuilder(VertexArray &); - ~VertexArrayBuilder(); private: - VertexArray &array; - - VertexArrayBuilder(const VertexArrayBuilder &); - virtual void vertex_(float, float, float, float); + virtual void vertex_(const Vector4 &); }; } // namespace GL