mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-08 04:07:13 -04:00
12 lines
333 B
C
12 lines
333 B
C
#ifndef GFPIXEL_H
|
|
#define GFPIXEL_H
|
|
|
|
#include "dolphin/gx/GXEnum.h"
|
|
#include "dolphin/gx/GXStruct.h"
|
|
|
|
void GFSetFog(GXFogType type, f32 startZ, f32 endZ, f32 nearZ, f32 farZ, GXColor color);
|
|
void GFSetBlendModeEtc(GXBlendMode, GXBlendFactor, GXBlendFactor, GXLogicOp, u8, u8, u8);
|
|
void GFSetDstAlpha(u8, u8);
|
|
|
|
#endif /* GFPIXEL_H */
|