]> git.tdb.fi Git - libs/gl.git/blob - source/core/primitivetype.h
Remove support for array size specialization from the engine as well
[libs/gl.git] / source / core / primitivetype.h
1 #ifndef MSP_GL_PRIMITIVETYPE_H_
2 #define MSP_GL_PRIMITIVETYPE_H_
3
4 #include <msp/strings/lexicalcast.h>
5
6 namespace Msp {
7 namespace GL {
8
9 enum PrimitiveType
10 {
11         POINTS,
12         LINES,
13         LINE_STRIP,
14         LINE_LOOP,
15         TRIANGLES,
16         TRIANGLE_STRIP,
17         TRIANGLE_FAN
18 };
19
20 void operator>>(const LexicalConverter &, PrimitiveType &);
21
22 } // namespace GL
23 } // namespace Msp
24
25 #include "primitivetype_backend.h"
26
27 #endif