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

d3d11: Allow to pass NULL as "query" to d3d10_device_CreateQuery().

parent ccfda14c
......@@ -4610,9 +4610,14 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateQuery(ID3D10Device1 *iface,
if (FAILED(hr = d3d_query_create(device, (const D3D11_QUERY_DESC *)desc, FALSE, &object)))
return hr;
*query = &object->ID3D10Query_iface;
if (query)
{
*query = &object->ID3D10Query_iface;
return S_OK;
}
return S_OK;
ID3D10Query_Release(&object->ID3D10Query_iface);
return S_FALSE;
}
static HRESULT STDMETHODCALLTYPE d3d10_device_CreatePredicate(ID3D10Device1 *iface,
......
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