TINYGL: Use realloc to increase the size of the vertex array

This commit is contained in:
Cameron Cawley
2023-02-03 22:06:53 +00:00
parent c89cc0bc4c
commit 4b2e3e6726
3 changed files with 6 additions and 3 deletions
+4
View File
@@ -45,4 +45,8 @@ void *gl_zalloc(int size) {
return calloc(1, size);
}
void *gl_realloc(void *p, int size) {
return realloc(p, size);
}
} // end of namespace TinyGL