mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-27 06:40:36 +00:00
d107b6c2a9
* z64vimode.h * z64viscvg.h * z64vis*.h * VisCvg * sys_cfb.h * a bit of naming * review * Renames * bss * fix * bss * bss * bss * messed up the merge * bss is borken * reordering 2 * remove prevent header from fault.c
21 lines
457 B
C
21 lines
457 B
C
#ifndef Z64_VISMONO_H
|
|
#define Z64_VISMONO_H
|
|
|
|
#include "ultra64.h"
|
|
#include "color.h"
|
|
|
|
typedef struct VisMono {
|
|
/* 0x00 */ u32 unk_00;
|
|
/* 0x04 */ u32 setScissor;
|
|
/* 0x08 */ Color_RGBA8_u32 primColor;
|
|
/* 0x0C */ Color_RGBA8_u32 envColor;
|
|
/* 0x10 */ u16* tlut;
|
|
/* 0x14 */ Gfx* dList;
|
|
} VisMono; // size = 0x18
|
|
|
|
void VisMono_Init(VisMono* this);
|
|
void VisMono_Destroy(VisMono* this);
|
|
void VisMono_Draw(VisMono* this, Gfx** gfxp);
|
|
|
|
#endif
|