// d3d12umddi.h
PFND3D12DDI_COPY_DESCRIPTORS_0003 Pfnd3d12ddiCopyDescriptors0003;
VOID Pfnd3d12ddiCopyDescriptors0003(
D3D12DDI_HDEVICE unnamedParam1,
UINT NumDestDescriptorRanges,
const D3D12DDI_CPU_DESCRIPTOR_HANDLE *pDestDescriptorRangeStarts,
const UINT *pDestDescriptorRangeSizes,
UINT NumSrcDescriptorRanges,
const D3D12DDI_CPU_DESCRIPTOR_HANDLE *pSrcDescriptorRangeStarts,
const UINT *pSrcDescriptorRangeSizes,
D3D12DDI_DESCRIPTOR_HEAP_TYPE DescriptorHeapsType
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Copy descriptors.
unnamedParam1A handle to the display device (graphics context).
NumDestDescriptorRangesThe number of descriptor ranges in the destination.
pDestDescriptorRangeStartsPointer to the start of the descriptor range in the destination.
pDestDescriptorRangeSizesPointer to the descriptor range sizes in the destination.
NumSrcDescriptorRangesThe number of descriptor ranges in the source.
pSrcDescriptorRangeStartsPointer to the start of the descriptor range in the source.
pSrcDescriptorRangeSizesPointer to the descriptor range sizes in the destination.
DescriptorHeapsTypeThe descriptor heap type.
//Declaration
PFND3D12DDI_COPY_DESCRIPTORS_0003 Pfnd3d12ddiCopyDescriptors0003;
// Definition
VOID Pfnd3d12ddiCopyDescriptors0003
(
D3D12DDI_HDEVICE
UINT NumDestDescriptorRanges
CONST D3D12DDI_CPU_DESCRIPTOR_HANDLE *pDestDescriptorRangeStarts
CONST UINT *pDestDescriptorRangeSizes
UINT NumSrcDescriptorRanges
CONST D3D12DDI_CPU_DESCRIPTOR_HANDLE *pSrcDescriptorRangeStarts
CONST UINT *pSrcDescriptorRangeSizes
D3D12DDI_DESCRIPTOR_HEAP_TYPE DescriptorHeapsType
)
{...}
PFND3D12DDI_COPY_DESCRIPTORS_0003