mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-12 09:45:04 -04:00
31 lines
478 B
C
31 lines
478 B
C
#ifndef DOLPHIN_GXEXTRA_H
|
|
#define DOLPHIN_GXEXTRA_H
|
|
// Extra types for PC
|
|
#ifdef TARGET_PC
|
|
#include <dolphin/gx/GXStruct.h>
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
float r;
|
|
float g;
|
|
float b;
|
|
float a;
|
|
} GXColorF32;
|
|
|
|
void GXDestroyTexObj(GXTexObj* obj);
|
|
void GXDestroyTlutObj(GXTlutObj* obj);
|
|
void GXDestroyCopyTex(void* dest);
|
|
|
|
void GXColor4f32(float r, float g, float b, float a);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|