X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fprimitivetype.h;h=9e65cbf711983c9da5c6f0b79f47a22ea828ef3f;hp=f4f665e3cd19744757b98399bd3d1f776c3a192f;hb=HEAD;hpb=a4ec5410595ddf37bfbc0e85ad87d31a9cbf94f1 diff --git a/source/primitivetype.h b/source/primitivetype.h deleted file mode 100644 index f4f665e3..00000000 --- a/source/primitivetype.h +++ /dev/null @@ -1,36 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_PRIMITIVETYPE_H_ -#define MSP_GL_PRIMITIVETYPE_H_ - -#include -#include "gl.h" - -namespace Msp { -namespace GL { - -enum PrimitiveType -{ - POINTS = GL_POINTS, - LINES = GL_LINES, - LINE_STRIP = GL_LINE_STRIP, - LINE_LOOP = GL_LINE_LOOP, - TRIANGLES = GL_TRIANGLES, - TRIANGLE_STRIP = GL_TRIANGLE_STRIP, - TRIANGLE_FAN = GL_TRIANGLE_FAN, - QUADS = GL_QUADS, - QUAD_STRIP = GL_QUAD_STRIP, - POLYGON = GL_POLYGON -}; - -std::istream &operator>>(std::istream &in, PrimitiveType &pt); - -} // namespace GL -} // namespace Msp - -#endif