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