video_out: Internal Resolution Support (#3194)

* impl

* clang

* clang+

* update total_entries too
This commit is contained in:
Fire Cube
2025-07-07 18:17:56 +02:00
committed by GitHub
parent 7fedbd52e0
commit 80f7ec2681
5 changed files with 56 additions and 25 deletions

View File

@@ -25,10 +25,14 @@ bool getIsFullscreen();
void setIsFullscreen(bool enable);
std::string getFullscreenMode();
void setFullscreenMode(std::string mode);
u32 getScreenWidth();
u32 getScreenHeight();
void setScreenWidth(u32 width);
void setScreenHeight(u32 height);
u32 getWindowWidth();
u32 getWindowHeight();
void setWindowWidth(u32 width);
void setWindowHeight(u32 height);
u32 getInternalScreenWidth();
u32 getInternalScreenHeight();
void setInternalScreenWidth(u32 width);
void setInternalScreenHeight(u32 height);
bool debugDump();
void setDebugDump(bool enable);
s32 getGpuId();