X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fprimitivebuilder.h;h=0ffd170cd3e82659cef26528b0bfaf341f2d634e;hp=cfe0a02c8bbea18cf04ba114d8999c3514f70009;hb=HEAD;hpb=d1800d7ea80290f4913d0203241cef1409656522 diff --git a/source/primitivebuilder.h b/source/primitivebuilder.h deleted file mode 100644 index cfe0a02c..00000000 --- a/source/primitivebuilder.h +++ /dev/null @@ -1,48 +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(); - PrimitiveType get_type() const; -protected: - virtual void vertex_(float, float, float, float); - virtual void begin_() =0; - virtual void end_() =0; -}; - -} // namespace GL -} // namespace Msp - -#endif