2022-08-30 04:05:16 +00:00
|
|
|
#ifndef DOLPHIN_GXBUMP_H
|
|
|
|
#define DOLPHIN_GXBUMP_H
|
|
|
|
|
|
|
|
#include <dolphin/gx/GXEnum.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void GXSetTevDirect(GXTevStageID tev_stage);
|
|
|
|
void GXSetNumIndStages(u8 nIndStages);
|
|
|
|
#ifdef TARGET_PC
|
|
|
|
void GXSetIndTexMtx(GXIndTexMtxID mtx_sel, const void* offset, s8 scale_exp);
|
|
|
|
#else
|
|
|
|
void GXSetIndTexMtx(GXIndTexMtxID mtx_sel, f32 offset[2][3], s8 scale_exp);
|
|
|
|
#endif
|
|
|
|
void GXSetIndTexOrder(GXIndTexStageID ind_stage, GXTexCoordID tex_coord, GXTexMapID tex_map);
|
2022-09-18 06:05:46 +00:00
|
|
|
void GXSetTevIndirect(GXTevStageID tev_stage, GXIndTexStageID ind_stage, GXIndTexFormat format,
|
|
|
|
GXIndTexBiasSel bias_sel, GXIndTexMtxID matrix_sel, GXIndTexWrap wrap_s,
|
|
|
|
GXIndTexWrap wrap_t, GXBool add_prev, GXBool ind_lod,
|
2022-08-30 22:48:44 +00:00
|
|
|
GXIndTexAlphaSel alpha_sel);
|
2022-09-18 06:05:46 +00:00
|
|
|
void GXSetTevIndWarp(GXTevStageID tev_stage, GXIndTexStageID ind_stage, GXBool signed_offsets,
|
|
|
|
GXBool replace_mode, GXIndTexMtxID matrix_sel);
|
2022-08-30 22:48:44 +00:00
|
|
|
void GXSetIndTexCoordScale(GXIndTexStageID ind_state, GXIndTexScale scale_s, GXIndTexScale scale_t);
|
2022-08-30 04:05:16 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|