mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 23:01:23 -04:00
7154ac08e1
* initial freezard actor struct + setActionMode OK * daE_FZ_Draw * setReflectAngle * mBoundSoundset * daE_FZ_Execute & execute * demoDelete * daE_FZ_Delete & _delete * CreateHeap * useHeapInit * cc_set * mtx_set * action WIP * way_gake_check * executeRollMove * executeMove * draw WIP * executeDamage * checkpoint * create * checkpoint * daE_FZ_c::executeWait * checkpoint * daE_FZ_c::damage_check almost done * rm asm * rm headers * setup_profile WIP + doxygen update * fix merge issues * docs fix? * fix2 * doxygen updates * setup g_profile_E_FZ, profile setup script WIP * update github actions * update progress.md
31 lines
948 B
C
31 lines
948 B
C
#ifndef GXFRAMEBUF_H
|
|
#define GXFRAMEBUF_H
|
|
|
|
#include "dolphin/gx/GXStruct.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXSetDispCopySrc(u16 left, u16 top, u16 width, u16 height);
|
|
void GXSetTexCopySrc(u16 left, u16 top, u16 width, u16 height);
|
|
void GXSetDispCopyDst(u16 arg0, u16 arg1);
|
|
void GXSetTexCopyDst(u16 width, u16 height, GXTexFmt format, GXBool useMIPmap);
|
|
void GXSetDispCopyFrame2Field(GXCopyMode mode);
|
|
void GXSetCopyClamp(GXFBClamp clamp);
|
|
u16 GXGetNumXfbLines(const u16 efbHeight, f32 yScale);
|
|
f32 GXGetYScaleFactor(u16 efb_height, u16 xfb_height);
|
|
u32 GXSetDispCopyYScale(f32 y_scale);
|
|
void GXSetCopyClear(GXColor color, u32 clear_z);
|
|
void GXSetCopyFilter(GXBool antialias, u8 pattern[12][2], GXBool vf, u8 vfilter[7]);
|
|
void GXSetDispCopyGamma(GXGamma gamma);
|
|
void GXCopyDisp(void* dst, GXBool clear);
|
|
void GXCopyTex(void* dst, GXBool clear);
|
|
void GXClearBoundingBox(void);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* GXFRAMEBUF_H */
|