mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-24 06:29:59 +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
19 lines
380 B
C
19 lines
380 B
C
#ifndef Z64_VISCVG_H
|
|
#define Z64_VISCVG_H
|
|
|
|
#include "ultra64.h"
|
|
#include "color.h"
|
|
|
|
typedef struct VisCvg {
|
|
/* 0x0 */ u32 type;
|
|
/* 0x4 */ u32 setScissor;
|
|
/* 0x8 */ Color_RGBA8_u32 color;
|
|
/* 0xC */ Color_RGBA8 envColor;
|
|
} VisCvg; // size = 0x10
|
|
|
|
void VisCvg_Init(VisCvg* this);
|
|
void VisCvg_Destroy(VisCvg* this);
|
|
void VisCvg_Draw(VisCvg* this, Gfx** gfxp);
|
|
|
|
#endif
|