]> git.tdb.fi Git - libs/gl.git/blob - source/core/misc.h
Rearrange soucre files into subdirectories
[libs/gl.git] / source / core / 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 int get_i(GLenum);
14 int get_shader_i(unsigned, GLenum);
15 int get_program_i(unsigned, GLenum);
16
17 } // namespace GL
18 } // namespace Msp
19
20 #endif