// d3d12umddi.h
PFND3D12DDI_CREATE_QUERY_HEAP_0001 Pfnd3d12ddiCreateQueryHeap0001;
HRESULT Pfnd3d12ddiCreateQueryHeap0001(
D3D12DDI_HDEVICE unnamedParam1,
const D3D12DDIARG_CREATE_QUERY_HEAP_0001 *unnamedParam2,
D3D12DDI_HQUERYHEAP unnamedParam3
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Creates a query heap.
unnamedParam1A handle to the display device (graphics context).
unnamedParam2Pointer to a D3D12DDIARG_CREATE_QUERY_HEAP_0001 structure.
unnamedParam3A query heap handle.
Returns HRESULT.
//Declaration
PFND3D12DDI_CREATE_QUERY_HEAP_0001 Pfnd3d12ddiCreateQueryHeap0001;
// Definition
HRESULT Pfnd3d12ddiCreateQueryHeap0001
(
D3D12DDI_HDEVICE
CONST D3D12DDIARG_CREATE_QUERY_HEAP_0001 *
D3D12DDI_HQUERYHEAP
)
{...}
PFND3D12DDI_CREATE_QUERY_HEAP_0001