Procházet zdrojové kódy

Added note on GLFW custom allocators for the future

pull/1946/head
Ray před 3 roky
rodič
revize
b154bc33f5
1 změnil soubory, kde provedl 11 přidání a 0 odebrání
  1. +11
    -0
      src/core.c

+ 11
- 0
src/core.c Zobrazit soubor

@ -3583,6 +3583,17 @@ static bool InitGraphicsDevice(int width, int height)
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB)
glfwSetErrorCallback(ErrorCallback);
/*
// Setup custom allocators to match raylib ones
const GLFWallocator allocator = {
.allocate = MemAlloc,
.deallocate = MemFree,
.reallocate = MemRealloc,
.user = NULL
};
glfwInitAllocator(&allocator);
*/
#if defined(__APPLE__)
glfwInitHint(GLFW_COCOA_CHDIR_RESOURCES, GLFW_FALSE);

Načítá se…
Zrušit
Uložit