mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
|
#include <ultra64.h>
|
||
|
#include <global.h>
|
||
|
|
||
|
void Draw_DListOpa(GlobalContext* globalCtx, u32 dlist)
|
||
|
{
|
||
|
GraphicsContext* gfxCtx = globalCtx->state.gfxCtx;
|
||
|
Gfx* gfxArr[4];
|
||
|
|
||
|
func_800C6AC4(gfxArr, globalCtx->state.gfxCtx, "../z_cheap_proc.c", 214);
|
||
|
|
||
|
func_80093D18(globalCtx->state.gfxCtx);
|
||
|
gSPMatrix(gfxCtx->polyOpa.p++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_cheap_proc.c", 216), G_MTX_MODELVIEW | G_MTX_LOAD);
|
||
|
gSPDisplayList(gfxCtx->polyOpa.p++, dlist);
|
||
|
|
||
|
func_800C6B54(gfxArr, globalCtx->state.gfxCtx, "../z_cheap_proc.c", 219);
|
||
|
}
|
||
|
|
||
|
void Draw_DListXlu(GlobalContext* globalCtx, u32 dlist)
|
||
|
{
|
||
|
GraphicsContext* gfxCtx = globalCtx->state.gfxCtx;
|
||
|
Gfx* gfxArr[4];
|
||
|
|
||
|
func_800C6AC4(gfxArr, globalCtx->state.gfxCtx, "../z_cheap_proc.c", 228);
|
||
|
|
||
|
func_80093D84(globalCtx->state.gfxCtx);
|
||
|
gSPMatrix(gfxCtx->polyXlu.p++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_cheap_proc.c", 230), G_MTX_MODELVIEW | G_MTX_LOAD);
|
||
|
gSPDisplayList(gfxCtx->polyXlu.p++, dlist);
|
||
|
|
||
|
func_800C6B54(gfxArr, globalCtx->state.gfxCtx, "../z_cheap_proc.c", 233);
|
||
|
}
|