SSBM Decomp
Loading...
Searching...
No Matches
__GXMisc.h
Go to the documentation of this file.
1#ifndef DOLPHIN_GX___GXMISC_HG
2#define DOLPHIN_GX___GXMISC_HG
3
4#include <platform.h>
5
7#include <dolphin/gx/GXEnum.h>
8
9/* 00339BB0 */ extern void __GXPEInit(void);
10void GXPokeZMode(bool compare_enable, GXCompare func, bool update_enable);
11void GXPokeDstAlpha(bool enable, u8 alpha);
12void GXPokeAlphaRead(s32 mode);
13void GXPokeAlphaMode(GXCompare func, u8 threshold);
14void GXPokeBlendMode(GXBlendMode type, GXBlendFactor src_factor,
15 GXBlendFactor dst_factor, GXLogicOp op);
16void GXPokeDither(s32 dither);
17void GXPokeAlphaUpdate(bool update_enable);
18void GXPokeColorUpdate(bool update_enable);
19
20#endif
GXBlendMode
Definition GXEnum.h:355
GXLogicOp
Definition GXEnum.h:376
GXCompare
Definition GXEnum.h:19
GXBlendFactor
Definition GXEnum.h:363
void GXPokeDstAlpha(bool enable, u8 alpha)
Definition GXMisc.c:202
void GXPokeAlphaUpdate(bool update_enable)
Definition GXMisc.c:139
void __GXPEInit(void)
Definition GXMisc.c:282
void GXPokeAlphaRead(s32 mode)
Definition GXMisc.c:130
void GXPokeDither(s32 dither)
Definition GXMisc.c:214
void GXPokeColorUpdate(bool update_enable)
Definition GXMisc.c:186
void GXPokeZMode(bool compare_enable, GXCompare func, bool update_enable)
Definition GXMisc.c:237
void GXPokeAlphaMode(GXCompare func, u8 threshold)
Definition GXMisc.c:115
void GXPokeBlendMode(GXBlendMode type, GXBlendFactor src_factor, GXBlendFactor dst_factor, GXLogicOp op)
Definition GXMisc.c:165
signed long s32
A signed 32-bit integer.
Definition platform.h:14
unsigned char u8
An unsigned 8-bit integer.
Definition platform.h:20
u8 alpha
Definition state.c:45
void(* func)(void)
Definition state.c:134