// d3dukmdt.h
typedef struct _D3DDDI_TESTCOMMANDBUFFER_COPY {
D3DKMT_ALIGN64 D3DGPU_VIRTUAL_ADDRESS SrcAddress;
D3DKMT_ALIGN64 D3DGPU_VIRTUAL_ADDRESS DstAddress;
UINT NumBytes;
} D3DDDI_TESTCOMMANDBUFFER_COPY;
View the official Windows Driver Kit DDI referenceNo description available.
The D3DDDI_TESTCOMMANDBUFFER_COPY structure describes a copy operation for a test command buffer for kernel-mode testing.
SrcAddressThe source GPU virtual address for the copy operation.
DstAddressThe destination GPU virtual address for the copy operation.
NumBytesThe number of bytes to copy. NumBytes must be a multiple of 4.
D3DDDI_TESTCOMMANDBUFFER_COPY is used to copy bytes using source and destination GPU virtual addresses.
For more information, see Kernel-mode testing.