]> git.tdb.fi Git - libs/gl.git/blob - source/core/primitivetype.h
Check the flat qualifier from the correct member
[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         TRIANGLES,
15         TRIANGLE_STRIP,
16         TRIANGLE_FAN
17 };
18
19 void operator>>(const LexicalConverter &, PrimitiveType &);
20
21 } // namespace GL
22 } // namespace Msp
23
24 #include "primitivetype_backend.h"
25
26 #endif