// d3dkmddi.h
typedef struct _DXGKARG_SETALLOCATIONBACKINGSTORE {
HANDLE hDriverAllocation;
VOID *pBackingStore;
} DXGKARG_SETALLOCATIONBACKINGSTORE;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARG_SETALLOCATIONBACKINGSTORE structure contains the arguments used by the DXGKDDI_SETALLOCATIONBACKINGSTORE callback function to obtain the system space address to a graphics allocation backing store.
hDriverAllocation[in] Handle to the driver allocation object. This handle was returned from DXGKDDI_CREATEALLOCATION.
pBackingStore[in] Pointer to an address in system space for the allocation backing store. The address is valid until DXGKDDI_DESTROYALLOCATION is called.
See Sharing the backing store with KMD for more information.
DXGKDDI_SETALLOCATIONBACKINGSTORE