mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 13:05:02 +00:00
Allow memory allocation to be overridden
This commit is contained in:
parent
005b738a2a
commit
625043999c
1 changed files with 9 additions and 1 deletions
10
fast_obj.h
10
fast_obj.h
|
@ -109,6 +109,14 @@ void fast_obj_destroy(fastObjMesh* mesh);
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifndef FAST_OBJ_REALLOC
|
||||
#define FAST_OBJ_REALLOC realloc
|
||||
#endif
|
||||
|
||||
#ifndef FAST_OBJ_FREE
|
||||
#define FAST_OBJ_FREE free
|
||||
#endif
|
||||
|
||||
|
||||
/* Size of buffer to read into */
|
||||
#define BUFFER_SIZE 65536
|
||||
|
@ -154,7 +162,7 @@ double POWER_10_NEG[MAX_POWER] =
|
|||
static
|
||||
void* memory_realloc(void* ptr, size_t bytes)
|
||||
{
|
||||
return realloc(ptr, bytes);
|
||||
return FAST_OBJ_REALLOC(ptr, bytes);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue