mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 12:59:44 +00:00
147e4fcedc
* THA docs Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com> * format * namefixer * yada * remove zero pad comment * Update include/z64.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update include/thga.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * namefixer * bss * namefixer --------- Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com> Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com>
34 lines
1.2 KiB
C
34 lines
1.2 KiB
C
#ifndef THGA_H
|
|
#define THGA_H
|
|
|
|
#include "tha.h"
|
|
|
|
typedef union TwoHeadGfxArena {
|
|
struct { // Same as TwoHeadArena, with different types and field names for the head and tail pointers
|
|
/* 0x0 */ size_t size;
|
|
/* 0x4 */ void* start;
|
|
/* 0x8 */ Gfx* p;
|
|
/* 0xC */ void* d;
|
|
};
|
|
/* 0x0 */ TwoHeadArena tha;
|
|
} TwoHeadGfxArena; // size = 0x10
|
|
|
|
void THGA_Init(TwoHeadGfxArena* thga, void* start, size_t size);
|
|
void THGA_Destroy(TwoHeadGfxArena* thga);
|
|
u32 THGA_IsCrash(TwoHeadGfxArena* thga);
|
|
void THGA_Reset(TwoHeadGfxArena* thga);
|
|
s32 THGA_GetRemaining(TwoHeadGfxArena* thga);
|
|
Gfx* THGA_GetHead(TwoHeadGfxArena* thga);
|
|
void THGA_SetHead(TwoHeadGfxArena* thga, Gfx* newHead);
|
|
void* THGA_GetTail(TwoHeadGfxArena* thga);
|
|
Gfx* THGA_AllocDisplayList(TwoHeadGfxArena* thga, size_t num);
|
|
Gfx* THGA_AllocGfx(TwoHeadGfxArena* thga);
|
|
Gfx* THGA_AllocGfx2(TwoHeadGfxArena* thga);
|
|
void* THGA_AllocTail(TwoHeadGfxArena* thga, size_t size);
|
|
Mtx* THGA_AllocMtxArray(TwoHeadGfxArena* thga, size_t num);
|
|
Mtx* THGA_AllocMtx(TwoHeadGfxArena* thga);
|
|
Vtx* THGA_AllocVtxArray(TwoHeadGfxArena* thga, size_t num);
|
|
Vtx* THGA_AllocVtx(TwoHeadGfxArena* thga);
|
|
|
|
#endif
|