From b96cb1abaf8f15caf71675dbc862fd226166dbff Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 7 Feb 2022 20:02:19 -0600 Subject: [PATCH] Remove per-app HDR support check It doesn't seem to make a difference anymore whether it's supported or not. GFE seems happy to enter HDR mode anyway. --- app/streaming/session.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/streaming/session.cpp b/app/streaming/session.cpp index b2eac478..074f0d61 100644 --- a/app/streaming/session.cpp +++ b/app/streaming/session.cpp @@ -728,12 +728,8 @@ bool Session::validateLaunch(SDL_Window* testWindow) // Turn HDR back off unless all criteria are met. m_StreamConfig.enableHdr = false; - // Check that the app supports HDR - if (!m_App.hdrSupported) { - emitLaunchWarning(tr("%1 doesn't support HDR10.").arg(m_App.name)); - } // Check that the server GPU supports HDR - else if (!(m_Computer->serverCodecModeSupport & 0x200)) { + if (!(m_Computer->serverCodecModeSupport & 0x200)) { emitLaunchWarning(tr("Your host PC GPU doesn't support HDR streaming. " "A GeForce GTX 1000-series (Pascal) or later GPU is required for HDR streaming.")); }