From a420e5ab822d0fa02d8fa20f97009220980869a5 Mon Sep 17 00:00:00 2001 From: Bigfoot71 Date: Mon, 24 Mar 2025 14:38:19 +0100 Subject: [PATCH] def sw alloc macros --- src/rlgl.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/rlgl.h b/src/rlgl.h index 3a7acec5e..3daff2348 100644 --- a/src/rlgl.h +++ b/src/rlgl.h @@ -844,6 +844,9 @@ RLAPI void rlLoadDrawQuad(void); // Load and draw a quad #if defined(GRAPHICS_API_OPENGL_11) #if defined(GRAPHICS_API_OPENGL_11_SOFTWARE) #define RLSW_IMPL + #define SW_MALLOC(sz) RL_MALLOC(sz) + #define SW_REALLOC(ptr, newSz) RL_REALLOC(ptr, newSz) + #define SW_FREE(ptr) RL_FREE(ptr) #include // OpenGL 1.1 software implementation #else #if defined(__APPLE__)