mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
* animated materials * fix build errors with CI * tests * fix issues * renamed cs halt state flag * format * remove test scene from spec * remove test code from z_play.c * forgot to reset the boot entrance * fixed issues * format * update safeguards * cleanup and fixes
36 lines
920 B
C
36 lines
920 B
C
#ifndef LETTERBOX_H
|
|
#define LETTERBOX_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
void Letterbox_SetSizeTarget(s32 target);
|
|
u32 Letterbox_GetSizeTarget(void);
|
|
void Letterbox_SetSize(s32 size);
|
|
u32 Letterbox_GetSize(void);
|
|
void Letterbox_Init(void);
|
|
void Letterbox_Destroy(void);
|
|
void Letterbox_Update(s32 updateRate);
|
|
|
|
#if ENABLE_NEW_LETTERBOX
|
|
|
|
struct GraphicsContext;
|
|
|
|
void ShrinkWindow_Letterbox_SetSizeTarget(s32 target);
|
|
s32 ShrinkWindow_Letterbox_GetSizeTarget(void);
|
|
void ShrinkWindow_Letterbox_SetSize(s32 size);
|
|
s32 ShrinkWindow_Letterbox_GetSize(void);
|
|
|
|
void ShrinkWindow_Pillarbox_SetSizeTarget(s32 target);
|
|
s32 ShrinkWindow_Pillarbox_GetSizeTarget(void);
|
|
void ShrinkWindow_Pillarbox_SetSize(s32 size);
|
|
s32 ShrinkWindow_Pillarbox_GetSize(void);
|
|
|
|
void ShrinkWindow_Init(void);
|
|
void ShrinkWindow_Destroy(void);
|
|
void ShrinkWindow_Update(s32 framerateDivisor);
|
|
void ShrinkWindow_Draw(struct GraphicsContext* gfxCtx);
|
|
|
|
#endif
|
|
|
|
#endif
|