mirror of https://github.com/zeldaret/mm.git
18 lines
467 B
C
18 lines
467 B
C
#ifndef FAULT_INTERNAL_H
|
|
#define FAULT_INTERNAL_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
|
|
typedef void (*FaultDrawerCallback)(void);
|
|
|
|
void FaultDrawer_SetOsSyncPrintfEnabled(u32 enabled);
|
|
void FaultDrawer_DrawRecImpl(s32 xStart, s32 yStart, s32 xEnd, s32 yEnd, u16 color);
|
|
void FaultDrawer_FillScreen(void);
|
|
void FaultDrawer_SetDrawerFrameBuffer(void* frameBuffer, u16 w, u16 h);
|
|
void FaultDrawer_SetInputCallback(FaultDrawerCallback callback);
|
|
void FaultDrawer_Init(void);
|
|
|
|
|
|
#endif
|