1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

dxgi: Update TRACE in dxgi_device_create_resource().

This commit is contained in:
Andrey Gusev 2023-04-19 01:08:52 +03:00 committed by Alexandre Julliard
parent 3268601dae
commit af6d82613a

View file

@ -333,8 +333,9 @@ static HRESULT STDMETHODCALLTYPE dxgi_device_create_resource(IWineDXGIDevice *if
struct dxgi_resource *object;
HRESULT hr;
TRACE("iface %p, wined3d_resource %p, usage %#x, shared_resource %p, outer %p, surface %p.\n",
iface, wined3d_resource, usage, shared_resource, outer, resource);
TRACE("iface %p, wined3d_resource %p, usage %#x, shared_resource %p, outer %p, needs_surface %d, "
"resource %p.\n", iface, wined3d_resource, usage, shared_resource, outer, needs_surface,
resource);
if (!(object = heap_alloc_zero(sizeof(*object))))
{