[PATCH 1/9] dxgi: Add FIXME() for ignored output parameter in dxgi_factory_CreateSwapChainForHwnd().

Józef Kucia jkucia at codeweavers.com
Wed May 30 05:18:32 CDT 2018


Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
---
 dlls/dxgi/factory.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/dxgi/factory.c b/dlls/dxgi/factory.c
index a3eb1085b309..4fe684b2a915 100644
--- a/dlls/dxgi/factory.c
+++ b/dlls/dxgi/factory.c
@@ -294,6 +294,9 @@ static HRESULT STDMETHODCALLTYPE dxgi_factory_CreateSwapChainForHwnd(IWineDXGIFa
         return DXGI_ERROR_INVALID_CALL;
     }
 
+    if (output)
+        FIXME("Ignoring output %p.\n", output);
+
     if (SUCCEEDED(IUnknown_QueryInterface(device, &IID_IWineDXGIDevice, (void **)&dxgi_device)))
     {
         hr = d3d11_swapchain_create(dxgi_device, window, swapchain_desc, fullscreen_desc, swapchain);
-- 
2.16.1




More information about the wine-devel mailing list