Files
camthesaxman c26b3d2e3d decompile rend_efc.s (#37)
* start decompiling rend_efc.s

* decompile more of rend_efc.s

* decompile more of rend_efc.s

* decompile more of rend_efc.s

* finish decompiling rend_efc.s

* labeling
2022-06-09 23:36:42 -05:00

22 lines
808 B
C

#ifndef _DOLPHIN_GXFRAMEBUFFER_H_
#define _DOLPHIN_GXFRAMEBUFFER_H_
#include <dolphin/GXStruct.h>
#include <dolphin/GXEnum.h>
void GXSetCopyClear(GXColor clear_clr, u32 clear_z);
void GXAdjustForOverscan(GXRenderModeObj *rmin, GXRenderModeObj *rmout,
u16 hor, u16 ver);
void GXCopyDisp(void *dest, GXBool clear);
void GXSetDispCopyGamma(GXGamma gamma);
void GXSetDispCopySrc(u16 left, u16 top, u16 wd, u16 ht);
void GXSetDispCopyDst(u16 wd, u16 ht);
u32 GXSetDispCopyYScale(f32 vscale);
void GXSetCopyFilter(GXBool aa, u8 sample_pattern[12][2], GXBool vf, u8 vfilter[7]);
void GXSetPixelFmt(GXPixelFmt pix_fmt, GXZFmt16 z_fmt);
void GXSetTexCopySrc(u16 left, u16 top, u16 wd, u16 ht);
void GXSetTexCopyDst(u16 wd, u16 ht, GXTexFmt fmt, GXBool mipmap);
void GXCopyTex(void *dest, GXBool clear);
#endif