]> git.tdb.fi Git - libs/gl.git/blob - source/misc.h
Drop Id tags and copyright notices from files
[libs/gl.git] / source / misc.h
1 #ifndef MSP_GL_MISC_H_
2 #define MSP_GL_MISC_H_
3
4 #include "gl.h"
5
6 namespace Msp {
7 namespace GL {
8
9 void enable(GLenum);
10 void disable(GLenum);
11 void set(GLenum, bool);
12
13 ///Deprecated (can't properly pass an array through a reference)
14 void get(GLenum, int &);
15
16 void get(GLenum, int *);
17 int get_i(GLenum);
18
19 } // namespace GL
20 } // namespace Msp
21
22 #endif