X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fprimitivebuilder.h;h=0ffd170cd3e82659cef26528b0bfaf341f2d634e;hp=ee8a8477c0cb9fac49e673502e067fd936615948;hb=HEAD;hpb=0f3ae7cf6aed59f07895dfbef6740be3b666fc20 diff --git a/source/primitivebuilder.h b/source/primitivebuilder.h deleted file mode 100644 index ee8a8477..00000000 --- a/source/primitivebuilder.h +++ /dev/null @@ -1,50 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_PRIMITIVEBUILDER_H_ -#define MSP_GL_PRIMITIVEBUILDER_H_ - -#include "primitivetype.h" -#include "vertexarray.h" -#include "vertexbuilder.h" - -namespace Msp { -namespace GL { - -class VertexArray; -class VertexArrayBuilder; - -/** -Base class for primitive builders. This is derived from VertexBuilder and adds -begin() and end() functions for specifying batches of primitives instead of -just vertices. -*/ -class PrimitiveBuilder: public VertexBuilder -{ -protected: - VertexArray &array; - RefPtr builder; - PrimitiveType type; - bool in_batch; - - PrimitiveBuilder(VertexArray &); -public: - void begin(PrimitiveType); - void end(); - void element(unsigned); - PrimitiveType get_type() const; -protected: - virtual void vertex_(float, float, float, float); - virtual void begin_() =0; - virtual void end_() =0; - virtual void element_(unsigned) =0; -}; - -} // namespace GL -} // namespace Msp - -#endif