From 6dc57f9b4938cd8eac091ec44bac38f7d12b910b Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Thu, 13 Aug 2020 19:36:31 +0530 Subject: [PATCH 3/5] include/dxgi1_2.idl: fix order of functions in IDXGIFactory2 interface swap between RegisterStereoStatusWindow and RegisterOcclusionStatusWindow methods. Signed-off-by: Biswapriyo Nath --- include/dxgi1_2.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/dxgi1_2.idl b/include/dxgi1_2.idl index ef256d4..921a66e 100644 --- a/include/dxgi1_2.idl +++ b/include/dxgi1_2.idl @@ -318,7 +318,7 @@ interface IDXGIFactory2 : IDXGIFactory1 [in] HANDLE hResource, [out] LUID *pLuid); - HRESULT RegisterOcclusionStatusWindow( + HRESULT RegisterStereoStatusWindow( [in] HWND WindowHandle, [in] UINT wMsg, [out] DWORD *pdwCookie); @@ -330,7 +330,7 @@ interface IDXGIFactory2 : IDXGIFactory1 void UnregisterStereoStatus( [in] DWORD dwCookie); - HRESULT RegisterStereoStatusWindow( + HRESULT RegisterOcclusionStatusWindow( [in] HWND WindowHandle, [in] UINT wMsg, [out] DWORD *pdwCookie); -- 2.27.0