]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/misc.h
Rearrange soucre files into subdirectories
[libs/gl.git] / source / core / misc.h
diff --git a/source/core/misc.h b/source/core/misc.h
new file mode 100644 (file)
index 0000000..32adc9b
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef MSP_GL_MISC_H_
+#define MSP_GL_MISC_H_
+
+#include "gl.h"
+
+namespace Msp {
+namespace GL {
+
+void enable(GLenum);
+void disable(GLenum);
+void set(GLenum, bool);
+
+int get_i(GLenum);
+int get_shader_i(unsigned, GLenum);
+int get_program_i(unsigned, GLenum);
+
+} // namespace GL
+} // namespace Msp
+
+#endif