DXGKARG_SETALLOCATIONBACKINGSTORE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmddi.h

typedef struct _DXGKARG_SETALLOCATIONBACKINGSTORE {
  HANDLE hDriverAllocation;
  VOID   *pBackingStore;
} DXGKARG_SETALLOCATIONBACKINGSTORE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmddi-dxgkarg_setallocationbackingstore)

Description

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.

Members

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.

Remarks

See Sharing the backing store with KMD for more information.

See also

DXGKDDI_SETALLOCATIONBACKINGSTORE