mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 11:20:56 +00:00
23 lines
318 B
C++
23 lines
318 B
C++
|
|
// Memory allocator for TinyGL
|
|
|
|
#include "graphics/tinygl/zgl.h"
|
|
|
|
namespace TinyGL {
|
|
|
|
// modify these functions so that they suit your needs
|
|
|
|
void gl_free(void *p) {
|
|
free(p);
|
|
}
|
|
|
|
void *gl_malloc(int size) {
|
|
return malloc(size);
|
|
}
|
|
|
|
void *gl_zalloc(int size) {
|
|
return calloc(1, size);
|
|
}
|
|
|
|
} // end of namespace TinyGL
|