Integrate standalone FSUI into Panda SDL frontend

This commit is contained in:
moonpower
2026-04-03 06:16:04 +02:00
parent 6be36b20ed
commit f2bc79352f
14 changed files with 2348 additions and 471 deletions

View File

@@ -28,6 +28,7 @@ struct FrontendSettings {
WindowIcon icon = WindowIcon::Rpog;
std::string language = "en";
bool showImGuiDebugPanel = true;
bool enableFullscreenUI = false;
#ifdef IMGUI_FRONTEND
bool stretchImGuiOutputToWindow = true;
#else
@@ -39,4 +40,5 @@ struct FrontendSettings {
static WindowIcon iconFromString(std::string inString);
static const char* iconToString(WindowIcon icon);
static bool defaultFullscreenUIEnabled();
};