// d3d12umddi.h
PFND3D12DDI_COPY_DESCRIPTORS_SIMPLE_0003 Pfnd3d12ddiCopyDescriptorsSimple0003;
VOID Pfnd3d12ddiCopyDescriptorsSimple0003(
D3D12DDI_HDEVICE unnamedParam1,
UINT NumDescriptors,
D3D12DDI_CPU_DESCRIPTOR_HANDLE DestDescriptorRangeStart,
D3D12DDI_CPU_DESCRIPTOR_HANDLE SrcDescriptorRangeStart,
D3D12DDI_DESCRIPTOR_HEAP_TYPE DescriptorHeapsType
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Copies a descriptor.
unnamedParam1A handle to the display device (graphics context).
NumDescriptorsThe number of descriptors to copy.
DestDescriptorRangeStartA handle to the descriptor range in the destination.
SrcDescriptorRangeStartA handle to the descriptor range in the source.
DescriptorHeapsTypeThe descriptor heap type.
//Declaration
PFND3D12DDI_COPY_DESCRIPTORS_SIMPLE_0003 Pfnd3d12ddiCopyDescriptorsSimple0003;
// Definition
VOID Pfnd3d12ddiCopyDescriptorsSimple0003
(
D3D12DDI_HDEVICE
UINT NumDescriptors
D3D12DDI_CPU_DESCRIPTOR_HANDLE DestDescriptorRangeStart
D3D12DDI_CPU_DESCRIPTOR_HANDLE SrcDescriptorRangeStart
D3D12DDI_DESCRIPTOR_HEAP_TYPE DescriptorHeapsType
)
{...}
PFND3D12DDI_COPY_DESCRIPTORS_SIMPLE_0003