diff options
author | sanine <sanine.not@pm.me> | 2022-08-22 09:08:59 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-22 09:08:59 -0500 |
commit | 33f3eb1c5a489a1b0c7d508e6a42f0dbb20e3a1b (patch) | |
tree | b414766946396a138def51f27edcb15bf23455b6 /src/gl/gl.c | |
parent | 68d4b40cd00dd0ec2f0ed09033f8e05a98e5ca2d (diff) |
add types to gl_buffer_data
Diffstat (limited to 'src/gl/gl.c')
-rw-r--r-- | src/gl/gl.c | 48 |
1 files changed, 36 insertions, 12 deletions
diff --git a/src/gl/gl.c b/src/gl/gl.c index f9419e2..953cefb 100644 --- a/src/gl/gl.c +++ b/src/gl/gl.c @@ -181,26 +181,50 @@ int gl_bind_buffer(lua_State *L) int gl_buffer_data(lua_State *L) { - lua_Integer target, usage; + lua_Integer target, type, usage; int table; - hs_parse_args(L, hs_int(target), hs_tbl(table), hs_int(usage)); + hs_parse_args(L, hs_int(target), hs_int(type), hs_tbl(table), hs_int(usage)); + + if (type != GL_INT && type != GL_FLOAT) { + hs_throw_error(L, "invalid type"); + } /* build raw buffer */ size_t len = lua_objlen(L, table); - float *buf = malloc(len * sizeof(float)); - if (buf == NULL) - hs_throw_error(L, "failed to allocate intermediary buffer"); - for (int i=0; i<len; i++) { - lua_rawgeti(L, table, i+1); - if (!lua_isnumber(L, -1)) { - hs_throw_error(L, "all table items must be numbers (failed at index %d)", i); + void *buf; + if (type == GL_FLOAT) { + float *fbuf = malloc(len * sizeof(float)); + if (fbuf == NULL) + hs_throw_error(L, "failed to allocate intermediary fbuffer"); + for (int i=0; i<len; i++) { + lua_rawgeti(L, table, i+1); + if (!lua_isnumber(L, -1)) { + hs_throw_error(L, "all table items must be numbers (failed at index %d)", i); + } + fbuf[i] = lua_tonumber(L, -1); + lua_pop(L, 1); + } + len = len * sizeof(float); + buf = fbuf; + } + else { + int *ibuf = malloc(len * sizeof(int)); + if (ibuf == NULL) + hs_throw_error(L, "failed to allocate intermediary ibuffer"); + for (int i=0; i<len; i++) { + lua_rawgeti(L, table, i+1); + if (!lua_isnumber(L, -1)) { + hs_throw_error(L, "all table items must be integers (failed at index %d)", i); + } + ibuf[i] = lua_tointeger(L, -1); + lua_pop(L, 1); } - buf[i] = lua_tonumber(L, -1); - lua_pop(L, 1); + len = len * sizeof(int); + buf = ibuf; } /* call */ - glBufferData(target, len*sizeof(float), buf, usage); + glBufferData(target, len, buf, usage); free(buf); return 0; } |