]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/primitivetype.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / core / primitivetype.h
index cbcb187c942739a6958db9f179e42b90573395bc..ae9be607e006d4fc742bff379ce3716239ab0e22 100644 (file)
@@ -11,17 +11,17 @@ enum PrimitiveType
        POINTS,
        LINES,
        LINE_STRIP,
-       LINE_LOOP,
        TRIANGLES,
        TRIANGLE_STRIP,
-       TRIANGLE_FAN
+       TRIANGLE_FAN,
+       PATCHES
 };
 
-unsigned get_gl_primitive_type(PrimitiveType);
-
 void operator>>(const LexicalConverter &, PrimitiveType &);
 
 } // namespace GL
 } // namespace Msp
 
+#include "primitivetype_backend.h"
+
 #endif