Explorar el Código

def sw alloc macros

pull/4832/head
Bigfoot71 hace 1 semana
padre
commit
a420e5ab82
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. +3
    -0
      src/rlgl.h

+ 3
- 0
src/rlgl.h Ver fichero

@ -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__)

Cargando…
Cancelar
Guardar