#ifndef _IN_GAME_GFXMEMORY_H #define _IN_GAME_GFXMEMORY_H #include #include "data.h" #include "types.h" extern u8 *g_GfxBuffers[3]; void gfxReset(void); Gfx *gfxGetMasterDisplayList(void); struct gfxvtx *gfxAllocateVertices(u32 count); void *gfxAllocateMatrix(void); void *gfxAllocateLookAt(s32 count); void *gfxAllocateColours(s32 count); void *gfxAllocate(u32 size); void gfxSwapBuffers(void); s32 gfxGetFreeGfx(Gfx *gdl); #endif