2022-08-30 04:05:16 +00:00
|
|
|
#ifndef DOLPHIN_GXTEXTURE_H
|
|
|
|
#define DOLPHIN_GXTEXTURE_H
|
|
|
|
|
|
|
|
#include <dolphin/gx/GXEnum.h>
|
|
|
|
#include <dolphin/gx/GXStruct.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-09-18 06:05:46 +00:00
|
|
|
void GXInitTexObj(GXTexObj* obj, const void* data, u16 width, u16 height, u32 format,
|
|
|
|
GXTexWrapMode wrapS, GXTexWrapMode wrapT, GXBool mipmap);
|
|
|
|
void GXInitTexObjCI(GXTexObj* obj, const void* data, u16 width, u16 height, GXCITexFmt format,
|
|
|
|
GXTexWrapMode wrapS, GXTexWrapMode wrapT, GXBool mipmap, u32 tlut);
|
2022-08-30 04:05:16 +00:00
|
|
|
void GXInitTexObjData(GXTexObj* obj, const void* data);
|
2022-09-18 06:05:46 +00:00
|
|
|
void GXInitTexObjLOD(GXTexObj* obj, GXTexFilter min_filt, GXTexFilter mag_filt, f32 min_lod,
|
|
|
|
f32 max_lod, f32 lod_bias, GXBool bias_clamp, GXBool do_edge_lod,
|
|
|
|
GXAnisotropy max_aniso);
|
2022-08-30 04:05:16 +00:00
|
|
|
void GXLoadTexObj(GXTexObj* obj, GXTexMapID id);
|
|
|
|
u32 GXGetTexBufferSize(u16 width, u16 height, u32 format, GXBool mipmap, u8 max_lod);
|
|
|
|
void GXInvalidateTexAll();
|
|
|
|
void GXInitTexObjWrapMode(GXTexObj* obj, GXTexWrapMode s, GXTexWrapMode t);
|
|
|
|
void GXInitTlutObj(GXTlutObj* obj, const void* data, GXTlutFmt format, u16 entries);
|
|
|
|
void GXLoadTlut(const GXTlutObj* obj, GXTlut idx);
|
2022-08-30 22:48:44 +00:00
|
|
|
void GXSetTexCoordScaleManually(GXTexCoordID coord, GXBool enable, u16 ss, u16 ts);
|
2022-08-30 04:05:16 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|