mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-18 14:40:56 +00:00
Leave the video subsystem initialized on Windows
It significantly reduces settings page load latency.
This commit is contained in:
+5
-1
@@ -670,9 +670,13 @@ int main(int argc, char *argv[])
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef STEAM_LINK
|
#if defined(STEAM_LINK) || defined(Q_OS_WIN32)
|
||||||
// Steam Link requires that we initialize video before creating our
|
// Steam Link requires that we initialize video before creating our
|
||||||
// QGuiApplication in order to configure the framebuffer correctly.
|
// QGuiApplication in order to configure the framebuffer correctly.
|
||||||
|
//
|
||||||
|
// We keep the video subsystem initialized on Windows because it's
|
||||||
|
// much more costly to reinitialize than other platforms. It hurts
|
||||||
|
// the settings page transition performance significantly.
|
||||||
if (SDL_InitSubSystem(SDL_INIT_VIDEO) != 0) {
|
if (SDL_InitSubSystem(SDL_INIT_VIDEO) != 0) {
|
||||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||||
"SDL_InitSubSystem(SDL_INIT_VIDEO) failed: %s",
|
"SDL_InitSubSystem(SDL_INIT_VIDEO) failed: %s",
|
||||||
|
|||||||
Reference in New Issue
Block a user