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

dxgi: Trace mode on separate line for FindClosestMatchingMode().

For more readable logs. Signed-off-by: 's avatarJózef Kucia <jkucia@codeweavers.com> Signed-off-by: 's avatarHenri Verbeet <hverbeet@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent b817be92
......@@ -305,8 +305,10 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_FindClosestMatchingMode(IDXGIOutput
struct wined3d_display_mode wined3d_mode;
HRESULT hr;
TRACE("iface %p, mode %s, closest_match %p, device %p.\n",
iface, debug_dxgi_mode(mode), closest_match, device);
TRACE("iface %p, mode %p, closest_match %p, device %p.\n",
iface, mode, closest_match, device);
TRACE("Mode: %s.\n", debug_dxgi_mode(mode));
wined3d_display_mode_from_dxgi(&wined3d_mode, mode);
hr = dxgi_output_find_closest_matching_mode(output, &wined3d_mode, device);
......@@ -422,8 +424,10 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_FindClosestMatchingMode1(IDXGIOutpu
struct wined3d_display_mode wined3d_mode;
HRESULT hr;
TRACE("iface %p, mode %s, closest_match %p, device %p.\n",
iface, debug_dxgi_mode1(mode), closest_match, device);
TRACE("iface %p, mode %p, closest_match %p, device %p.\n",
iface, mode, closest_match, device);
TRACE("Mode: %s.\n", debug_dxgi_mode1(mode));
wined3d_display_mode_from_dxgi1(&wined3d_mode, mode);
hr = dxgi_output_find_closest_matching_mode(output, &wined3d_mode, device);
......
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