mirror of
https://github.com/zeldaret/tp
synced 2026-05-29 08:43:05 -04:00
0de0339250
* Some GX work * GXFrameBuf work * Import GXAttr functions and enums * Import most of GXTev * Import most of GXPixel * Import GXFifo * Import some of GXInit * Import and work on GXTransform * Import GXPerf * A little work on GXTexture
20 lines
313 B
C
20 lines
313 B
C
#ifndef GXPERF_H
|
|
#define GXPERF_H
|
|
|
|
#include "dolphin/types.h"
|
|
#include "dolphin/gx/GXEnum.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXSetGPMetric(GXPerf0 perf0, GXPerf1 perf1);
|
|
void GXClearGPMetric(void);
|
|
void GXReadXfRasMetric(u32*, u32*, u32*, u32*);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* GXPERF_H */
|