X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fvertexarraybuilder.h;h=b956660f00c7df775a10120b9779732327f053f3;hp=0065c536b8aa52b297d9111d821e26d77fe74d63;hb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8;hpb=16f6f15328b3a6eec87b1b5e5822368966d44a38 diff --git a/source/vertexarraybuilder.h b/source/vertexarraybuilder.h index 0065c536..b956660f 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,15 +12,15 @@ class VertexArray; class VertexArrayBuilder: public VertexBuilder { -public: - VertexArrayBuilder(VertexArray &); - ~VertexArrayBuilder(); - private: VertexArray &array; VertexArrayBuilder(const VertexArrayBuilder &); - virtual void vertex_(float, float, float, float); +public: + VertexArrayBuilder(VertexArray &); + +private: + virtual void vertex_(const Vector4 &); }; } // namespace GL