X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fprimitivetype.h;h=4b6a1a3eeb6cdc2130cabdf5824deab599e642d8;hb=df9119a9bf2d348a513c515ed92953353da97b54;hp=8e33b1da141fc6cfabfc473329c9e73bb71f3607;hpb=7aaec9a70b8d7733429bec043f8e33e02956f266;p=libs%2Fgl.git diff --git a/source/core/primitivetype.h b/source/core/primitivetype.h index 8e33b1da..4b6a1a3e 100644 --- a/source/core/primitivetype.h +++ b/source/core/primitivetype.h @@ -2,20 +2,19 @@ #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 + POINTS, + LINES, + LINE_STRIP, + LINE_LOOP, + TRIANGLES, + TRIANGLE_STRIP, + TRIANGLE_FAN }; void operator>>(const LexicalConverter &, PrimitiveType &); @@ -23,4 +22,6 @@ void operator>>(const LexicalConverter &, PrimitiveType &); } // namespace GL } // namespace Msp +#include "primitivetype_backend.h" + #endif