mirror of
https://github.com/zeldaret/oot.git
synced 2025-10-20 05:30:26 +00:00
Document vismono (#1107)
* Document and explain vismono * Make it more clear "CFB" means Color Frame Buffer * Rename: Update DList/TLUT -> Desaturate DList/TLUT
This commit is contained in:
parent
2306e094b2
commit
dfbc356cdf
4 changed files with 107 additions and 48 deletions
|
@ -1381,10 +1381,7 @@ void func_800ACE90(struct_801664F0* this);
|
|||
void func_800ACE98(struct_801664F0* this, Gfx** gfxp);
|
||||
void VisMono_Init(VisMono* this);
|
||||
void VisMono_Destroy(VisMono* this);
|
||||
void VisMono_UpdateTexture(VisMono* this, u16* tex);
|
||||
Gfx* VisMono_DrawTexture(VisMono* this, Gfx* gfx);
|
||||
void VisMono_Draw(VisMono* this, Gfx** gfxp);
|
||||
void VisMono_DrawOld(VisMono* this);
|
||||
void func_800AD920(struct_80166500* this);
|
||||
void func_800AD950(struct_80166500* this);
|
||||
void func_800AD958(struct_80166500* this, Gfx** gfxp);
|
||||
|
|
|
@ -218,6 +218,7 @@
|
|||
#define GPACK_RGBA5551(r, g, b, a) ((((r)<<8) & 0xf800) | \
|
||||
(((g)<<3) & 0x7c0) | \
|
||||
(((b)>>2) & 0x3e) | ((a) & 0x1))
|
||||
#define GPACK_IA16(i, a) (((i) << 8) | (a))
|
||||
#define GPACK_ZDZ(z, dz) ((z) << 2 | (dz))
|
||||
|
||||
/*
|
||||
|
|
|
@ -1829,7 +1829,7 @@ typedef struct {
|
|||
/* 0x08 */ Color_RGBA8_u32 primColor;
|
||||
/* 0x0C */ Color_RGBA8_u32 envColor;
|
||||
/* 0x10 */ u16* tlut;
|
||||
/* 0x14 */ Gfx* monoDl;
|
||||
/* 0x14 */ Gfx* dList;
|
||||
} VisMono; // size = 0x18
|
||||
|
||||
// Vis...
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue