summaryrefslogtreecommitdiff
path: root/src/opengl/bind/e.bind
diff options
context:
space:
mode:
Diffstat (limited to 'src/opengl/bind/e.bind')
-rw-r--r--src/opengl/bind/e.bind57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/opengl/bind/e.bind b/src/opengl/bind/e.bind
new file mode 100644
index 0000000..50332d5
--- /dev/null
+++ b/src/opengl/bind/e.bind
@@ -0,0 +1,57 @@
+int glEnable_bind(lua_State *L)
+{
+ GLenum cap = luaL_checkinteger(L, 1);
+ glEnable(cap);
+ return 0;
+}
+
+
+int glEnablei_bind(lua_State *L)
+{
+ GLenum cap = luaL_checkinteger(L, 1);
+ GLuint index = luaL_checkinteger(L, 2);
+ glEnablei(cap, index);
+ return 0;
+}
+
+
+int glEnableVertexAttribArray_bind(lua_State *L)
+{
+ GLuint index = luaL_checkinteger(L, 1);
+ glEnableVertexAttribArray(index);
+ return 0;
+}
+
+
+int glEndConditionalRender_bind(lua_State *L)
+{
+ void = get:
+ glEndConditionalRender(void);
+ return 0;
+}
+
+
+int glEndQuery_bind(lua_State *L)
+{
+ GLenum target = luaL_checkinteger(L, 1);
+ glEndQuery(target);
+ return 0;
+}
+
+
+int glEndQueryIndexed_bind(lua_State *L)
+{
+ GLenum target = luaL_checkinteger(L, 1);
+ GLuint index = luaL_checkinteger(L, 2);
+ glEndQueryIndexed(target, index);
+ return 0;
+}
+
+
+int glEndTransformFeedback_bind(lua_State *L)
+{
+ glEndTransformFeedback();
+ return 0;
+}
+
+