Commit 43034644 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

dxgi/tests: Release IDXGIFactory in test_swapchain_present().

parent c377644c
...@@ -3427,6 +3427,8 @@ static void test_swapchain_present(void) ...@@ -3427,6 +3427,8 @@ static void test_swapchain_present(void)
refcount = IDXGIDevice_Release(device); refcount = IDXGIDevice_Release(device);
ok(!refcount, "Device has %u references left.\n", refcount); ok(!refcount, "Device has %u references left.\n", refcount);
DestroyWindow(swapchain_desc.OutputWindow); DestroyWindow(swapchain_desc.OutputWindow);
refcount = IDXGIFactory_Release(factory);
ok(!refcount, "Factory has %u references left.\n", refcount);
} }
static void test_maximum_frame_latency(void) static void test_maximum_frame_latency(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment