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.
This commit is contained in:
parent
1d79bcc657
commit
b96cb1abaf
1 changed files with 1 additions and 5 deletions
|
|
@ -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."));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue