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

d3d12: Print message about Vulkan configuration problem to winediag channel.

parent 16ba7f44
......@@ -35,6 +35,7 @@
#include <vkd3d.h>
WINE_DEFAULT_DEBUG_CHANNEL(d3d12);
WINE_DECLARE_DEBUG_CHANNEL(winediag);
HRESULT WINAPI D3D12GetDebugInterface(REFIID iid, void **debug)
{
......@@ -117,7 +118,7 @@ HRESULT WINAPI D3D12CreateDevice(IUnknown *adapter, D3D_FEATURE_LEVEL minimum_fe
if (!(vk_funcs = get_vk_funcs()))
{
ERR("Failed to get Wine Vulkan driver.\n");
ERR_(winediag)("Failed to load Wine Vulkan driver.\n");
return E_FAIL;
}
......
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