mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 23:05:36 -04:00
1114b13da8
* d_a_alldie / d_a_tboxSw / d_a_tag_gstart / d_a_tag_hstop * dolphin OS work / cleanup * dolphin GX work / cleanup * finish changing dolphin files to C * more files into C * match rest of MSL_C math functions * more dolphin files converted to C * remove asm * d_bg_w work * remove asm * d_a_alink work / kytag14
29 lines
940 B
C
29 lines
940 B
C
#ifndef GXPIXEL_H
|
|
#define GXPIXEL_H
|
|
|
|
#include "dolphin/gx/GXStruct.h"
|
|
#include "dolphin/gx/GXEnum.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXSetFog(GXFogType type, f32 startZ, f32 endZ, f32 nearZ, f32 farZ, GXColor color);
|
|
void GXSetFogRangeAdj(GXBool enable, u16 center, GXFogAdjTable* table);
|
|
void GXSetBlendMode(GXBlendMode mode, GXBlendFactor src_factor, GXBlendFactor dst_factor, GXLogicOp op);
|
|
void GXSetColorUpdate(GXBool enable_update);
|
|
void GXSetAlphaUpdate(GXBool enable_update);
|
|
void GXSetZMode(GXBool enable_compare, GXCompare comp, GXBool enable_update);
|
|
void GXSetZCompLoc(GXBool z_buf_before_tex);
|
|
void GXSetPixelFmt(GXPixelFmt pixel_fmt, GXZFmt16 z_fmt);
|
|
void GXSetDither(GXBool enable_dither);
|
|
void GXSetDstAlpha(GXBool enable, u8 alpha);
|
|
void GXSetFieldMask(GXBool odd_mask, GXBool even_mask);
|
|
void GXSetFieldMode(GXBool field_mode, GXBool half_aspect_ratio);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* GXPIXEL_H */
|