libs/vkd3d: Fix the d3d12_query_heap_create() argument order.

This commit is contained in:
Henri Verbeet
2017-08-28 19:43:32 +02:00
parent eedac9bdc7
commit e228d776be
3 changed files with 5 additions and 5 deletions

View File

@@ -1726,8 +1726,8 @@ struct d3d12_query_heap *unsafe_impl_from_ID3D12QueryHeap(ID3D12QueryHeap *iface
return impl_from_ID3D12QueryHeap(iface);
}
HRESULT d3d12_query_heap_create(struct d3d12_device *device, struct d3d12_query_heap **heap,
const D3D12_QUERY_HEAP_DESC *desc)
HRESULT d3d12_query_heap_create(struct d3d12_device *device, const D3D12_QUERY_HEAP_DESC *desc,
struct d3d12_query_heap **heap)
{
const struct vkd3d_vk_device_procs *vk_procs = &device->vk_procs;
struct d3d12_query_heap *object;