]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/primitivetype.h
Fix reflection of image types from Spir-V modules
[libs/gl.git] / source / core / primitivetype.h
index cbcb187c942739a6958db9f179e42b90573395bc..0c566f895b6d5cbd02a3b74060729637520322f0 100644 (file)
@@ -11,17 +11,16 @@ enum PrimitiveType
        POINTS,
        LINES,
        LINE_STRIP,
-       LINE_LOOP,
        TRIANGLES,
        TRIANGLE_STRIP,
        TRIANGLE_FAN
 };
 
-unsigned get_gl_primitive_type(PrimitiveType);
-
 void operator>>(const LexicalConverter &, PrimitiveType &);
 
 } // namespace GL
 } // namespace Msp
 
+#include "primitivetype_backend.h"
+
 #endif