Mario Kart 64
Loading...
Searching...
No Matches
render.inc.c
Go to the documentation of this file.
1#include <actors.h>
2#include <PR/gbi.h>
3
11void render_actor_red_shell(Camera* camera, Mat4 matrix, struct ShellActor* shell) {
12 gDPLoadTLUT_pal256(gDisplayListHead++, &gTLUTRedShell); // set texture
13 render_actor_shell(camera, matrix, shell);
14}
15
23void render_actor_blue_shell(Camera* camera, Mat4 matrix, struct ShellActor* shell) {
24 gDPLoadTLUT_pal256(gDisplayListHead++, common_tlut_blue_shell); // set texture
25 render_actor_shell(camera, matrix, shell);
26}
void render_actor_shell(Camera *camera, Mat4 matrix, struct ShellActor *shell)
Definition actors.c:683
s8 gTLUTRedShell[512]
Definition actors.c:36
void render_actor_blue_shell(Camera *camera, Mat4 matrix, struct ShellActor *shell)
Render the blue shell actor.
Definition render.inc.c:23
void render_actor_red_shell(Camera *camera, Mat4 matrix, struct ShellActor *shell)
Render the red shell actor.
Definition render.inc.c:11
u16 common_tlut_blue_shell[]
f32 Mat4[4][4]
Definition common_structs.h:16
Gfx * gDisplayListHead
Definition main.c:132
Definition camera.h:26
Definition actor_types.h:304