mirror of
https://github.com/BanjoRecomp/BanjoRecomp
synced 2026-05-23 06:34:20 -04:00
6aa7f36a6d
* Update RT64 to fix scissor origin leaking bug. * Add pillarboxing to cutscenes.
14 lines
428 B
C
14 lines
428 B
C
#ifndef __PATCH_GRAPHICS_H__
|
|
#define __PATCH_GRAPHICS_H__
|
|
|
|
#include "patch_helpers.h"
|
|
|
|
DECLARE_FUNC(void, recomp_get_window_resolution, u32*, u32*);
|
|
DECLARE_FUNC(float, recomp_get_target_aspect_ratio, float);
|
|
DECLARE_FUNC(s32, recomp_get_target_framerate, s32);
|
|
DECLARE_FUNC(s32, recomp_high_precision_fb_enabled);
|
|
DECLARE_FUNC(float, recomp_get_resolution_scale);
|
|
DECLARE_FUNC(float, recomp_get_cutscene_aspect_ratio);
|
|
|
|
#endif
|