mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-04 10:48:20 -04:00
18 lines
423 B
C
18 lines
423 B
C
#ifndef _IN_GAME_GFXMEMORY_H
|
|
#define _IN_GAME_GFXMEMORY_H
|
|
#include <ultra64.h>
|
|
#include "data.h"
|
|
#include "types.h"
|
|
|
|
void gfxInitMemory(void);
|
|
Gfx *gfxGetMasterDisplayList(void);
|
|
struct gfxvtx *gfxAllocateVertices(s32 count);
|
|
void *gfxAllocateMatrix(void);
|
|
void *gfxAllocateLookAt(s32 count);
|
|
void *gfxAllocateColours(s32 count);
|
|
void *gfxAllocate(u32 size);
|
|
void gfxSwapBuffers(void);
|
|
s32 gfxGetFreeGfx(Gfx *gdl);
|
|
|
|
#endif
|