2020-10-03 15:22:44 +00:00
|
|
|
#include "global.h"
|
2020-03-18 00:09:21 +00:00
|
|
|
|
2022-05-21 18:23:43 +00:00
|
|
|
void Gfx_DrawDListOpa(PlayState* play, Gfx* dlist) {
|
|
|
|
OPEN_DISPS(play->state.gfxCtx, "../z_cheap_proc.c", 214);
|
2020-03-18 00:09:21 +00:00
|
|
|
|
2022-06-03 22:25:48 +00:00
|
|
|
Gfx_SetupDL_25Opa(play->state.gfxCtx);
|
2022-05-21 18:23:43 +00:00
|
|
|
gSPMatrix(POLY_OPA_DISP++, Matrix_NewMtx(play->state.gfxCtx, "../z_cheap_proc.c", 216),
|
2020-03-22 21:19:43 +00:00
|
|
|
G_MTX_MODELVIEW | G_MTX_LOAD);
|
2020-10-29 21:31:09 +00:00
|
|
|
gSPDisplayList(POLY_OPA_DISP++, dlist);
|
2020-03-18 00:09:21 +00:00
|
|
|
|
2022-05-21 18:23:43 +00:00
|
|
|
CLOSE_DISPS(play->state.gfxCtx, "../z_cheap_proc.c", 219);
|
2020-03-18 00:09:21 +00:00
|
|
|
}
|
|
|
|
|
2022-05-21 18:23:43 +00:00
|
|
|
void Gfx_DrawDListXlu(PlayState* play, Gfx* dlist) {
|
|
|
|
OPEN_DISPS(play->state.gfxCtx, "../z_cheap_proc.c", 228);
|
2020-03-18 00:09:21 +00:00
|
|
|
|
2022-06-03 22:25:48 +00:00
|
|
|
Gfx_SetupDL_25Xlu(play->state.gfxCtx);
|
2022-05-21 18:23:43 +00:00
|
|
|
gSPMatrix(POLY_XLU_DISP++, Matrix_NewMtx(play->state.gfxCtx, "../z_cheap_proc.c", 230),
|
2020-03-22 21:19:43 +00:00
|
|
|
G_MTX_MODELVIEW | G_MTX_LOAD);
|
2020-10-29 21:31:09 +00:00
|
|
|
gSPDisplayList(POLY_XLU_DISP++, dlist);
|
2020-03-18 00:09:21 +00:00
|
|
|
|
2022-05-21 18:23:43 +00:00
|
|
|
CLOSE_DISPS(play->state.gfxCtx, "../z_cheap_proc.c", 233);
|
2020-03-18 00:09:21 +00:00
|
|
|
}
|