aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rlgl.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index bb421d1f..dd2929ca 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -72,6 +72,17 @@
#else
#define RLAPI // We are building or using raylib as a static library (or Linux shared library)
#endif
+
+ // Allow custom memory allocators
+ #ifndef RL_MALLOC
+ #define RL_MALLOC(sz) malloc(sz)
+ #endif
+ #ifndef RL_CALLOC
+ #define RL_CALLOC(n,sz) calloc(n,sz)
+ #endif
+ #ifndef RL_FREE
+ #define RL_FREE(p) free(p)
+ #endif
#else
#include "raylib.h" // Required for: Model, Shader, Texture2D, TraceLog()
#endif