// d3d12umddi.h
PFND3D12DDI_GET_CPU_DESCRIPTOR_HANDLE_FOR_HEAP_START Pfnd3d12ddiGetCpuDescriptorHandleForHeapStart;
D3D12DDI_CPU_DESCRIPTOR_HANDLE Pfnd3d12ddiGetCpuDescriptorHandleForHeapStart(
D3D12DDI_HDEVICE unnamedParam1,
D3D12DDI_HDESCRIPTORHEAP unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Gets the CPU descriptor handle that represents the start of the heap.
unnamedParam1A handle to the display device (graphics context).
unnamedParam2A user mode driver handle type.
Returns D3D12DDI_CPU_DESCRIPTOR_HANDLE that represents the start of the heap.
//Declaration
PFND3D12DDI_GET_CPU_DESCRIPTOR_HANDLE_FOR_HEAP_START Pfnd3d12ddiGetCpuDescriptorHandleForHeapStart;
// Definition
D3D12DDI_CPU_DESCRIPTOR_HANDLE Pfnd3d12ddiGetCpuDescriptorHandleForHeapStart
(
D3D12DDI_HDEVICE hDevice
D3D12DDI_HDESCRIPTORHEAP
)
{...}
PFND3D12DDI_GET_CPU_DESCRIPTOR_HANDLE_FOR_HEAP_START