Sfoglia il codice sorgente

def sw alloc macros

pull/4832/head
Bigfoot71 1 settimana fa
parent
commit
a420e5ab82
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. +3
    -0
      src/rlgl.h

+ 3
- 0
src/rlgl.h Vedi File

@ -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 <rlsw.h> // OpenGL 1.1 software implementation
#else
#if defined(__APPLE__)

Caricamento…
Annulla
Salva