Module: wine Branch: master Commit: 9b38ae997f6a5920694a5c97ff601827336b0575 URL: https://gitlab.winehq.org/wine/wine/-/commit/9b38ae997f6a5920694a5c97ff60182...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Jan 13 16:07:49 2023 +0100
d3d12/tests: Don't check the refcount after releasing the dxgi adapter.
The refcount is >= 1 on Windows 10 1709 and 1809 but 0 on more recent versions. So its value is not really important.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54299
---
dlls/d3d12/tests/d3d12.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dlls/d3d12/tests/d3d12.c b/dlls/d3d12/tests/d3d12.c index 33c8ad8dfff..5d3f8a36a2d 100644 --- a/dlls/d3d12/tests/d3d12.c +++ b/dlls/d3d12/tests/d3d12.c @@ -884,8 +884,7 @@ static void test_create_device(void) ok(refcount == 1, "Got unexpected refcount %lu.\n", refcount); hr = D3D12CreateDevice((IUnknown *)adapter, D3D_FEATURE_LEVEL_11_0, &IID_ID3D12Device, (void **)&device); ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr); - refcount = IDXGIAdapter_Release(adapter); - ok(refcount >= 1, "Got unexpected refcount %lu.\n", refcount); + IDXGIAdapter_Release(adapter); adapter = NULL;
luid = ID3D12Device_GetAdapterLuid(device);