mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-04 01:07:56 -04:00
4df8ccc871
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
14 lines
530 B
C
14 lines
530 B
C
#ifndef _DOLPHIN_GF_GFPIXEL_H
|
|
#define _DOLPHIN_GF_GFPIXEL_H
|
|
|
|
#include <dolphin/gx.h>
|
|
|
|
void GFSetFog(GXFogType type, f32 startz, f32 endz, f32 nearz, f32 farz, GXColor color);
|
|
void GFSetBlendModeEtc(GXBlendMode type, GXBlendFactor src_factor,
|
|
GXBlendFactor dst_factor, GXLogicOp logic_op,
|
|
u8 color_update_enable, u8 alpha_update_enable,
|
|
u8 dither_enable);
|
|
void GFSetZMode(u8 compare_enable, GXCompare func, u8 update_enable);
|
|
|
|
#endif /* _DOLPHIN_GF_GFPIXEL_H */
|