D3D11HostDisplay: Fix incorrect format support check

Was resulting in RGB565 textures trying to be created when unsupported.
This commit is contained in:
Connor McLaughlin 2021-01-05 17:47:58 +10:00
parent e3de44d127
commit 0534f36b8d
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ bool D3D11HostDisplay::SupportsDisplayPixelFormat(HostDisplayPixelFormat format)
UINT support = 0;
const UINT required = D3D11_FORMAT_SUPPORT_TEXTURE2D | D3D11_FORMAT_SUPPORT_SHADER_SAMPLE;
return (SUCCEEDED(m_device->CheckFormatSupport(dfmt, &support) && ((support & required) == required)));
return (SUCCEEDED(m_device->CheckFormatSupport(dfmt, &support)) && ((support & required) == required));
}
bool D3D11HostDisplay::BeginSetDisplayPixels(HostDisplayPixelFormat format, u32 width, u32 height, void** out_buffer,