From f84ee69cdf694a1f64f2536efed4b7d0dd75553a Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 22 Aug 2022 09:12:09 -0500 Subject: make hello triangle work --- src/gl/gl.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/gl') diff --git a/src/gl/gl.c b/src/gl/gl.c index 953cefb..cef93fa 100644 --- a/src/gl/gl.c +++ b/src/gl/gl.c @@ -47,6 +47,11 @@ int gl_clear(lua_State *L); void setup_gl(lua_State *L, int honey_index) { + int data_types = hs_create_table(L, + hs_str_int("integer", GL_INT), + hs_str_int("float", GL_FLOAT), + ); + int error_types = hs_create_table(L, hs_str_int("noError", GL_NO_ERROR), hs_str_int("invalidEnum", GL_INVALID_ENUM), @@ -89,6 +94,7 @@ void setup_gl(lua_State *L, int honey_index) hs_str_cfunc("terminate", gl_terminate), hs_str_cfunc("getError", gl_get_error), + hs_str_tbl("dataType", data_types), hs_str_tbl("errorType", error_types), /* buffer */ -- cgit v1.2.1