mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxgi] Fix IDXGISwapchain::CheckColorSpaceSuport
This commit is contained in:
parent
7644776f7a
commit
42332f7fb8
1 changed files with 3 additions and 1 deletions
|
@ -523,7 +523,9 @@ namespace dxvk {
|
|||
if (!pColorSpaceSupport)
|
||||
return E_INVALIDARG;
|
||||
|
||||
return m_presenter->CheckColorSpaceSupport(ColorSpace);
|
||||
UINT support = m_presenter->CheckColorSpaceSupport(ColorSpace);
|
||||
*pColorSpaceSupport = support;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue