// d3dkmddi.h
typedef struct _DXGK_CONTEXTINFO {
UINT DmaBufferSize;
UINT DmaBufferSegmentSet;
UINT DmaBufferPrivateDataSize;
UINT AllocationListSize;
UINT PatchLocationListSize;
UINT Reserved;
DXGK_CONTEXTINFO_CAPS Caps;
ULONG PagingCompanionNodeId;
} DXGK_CONTEXTINFO;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_CONTEXTINFO structure describes a device context.
DmaBufferSizeThe size, in bytes, of the buffer of hardware commands that is sent through direct memory access (DMA) to the graphics processing unit (GPU).
The DMA buffer can grow and shrink after the context is created; however, the DMA buffer can never shrink smaller than the starting size that DmaBufferSize specifies.
DmaBufferSegmentSetThe identifiers of the segments where the DMA buffer should be made accessible to the GPU.
DmaBufferPrivateDataSizeThe size, in bytes, of the driver-resident private data structure that is associated with each DMA buffer. Memory for this private data structure is allocated from nonpaged pool. If the driver specifies zero in DmaBufferPrivateDataSize, no memory is allocated for the private data structure.
The private data structure that is associated with a DMA buffer is initialized to zero when the DMA buffer is created. During the lifetime of the DMA buffer, the video memory manager never accesses the private data structure that is associated with the DMA buffer.
AllocationListSizeThe starting number of elements in an array of allocations (that is, an array of DXGK_ALLOCATIONLIST structures). This number is the starting number of allocations that the driver requests to be in the pAllocationList members of the DXGKARG_PRESENT and DXGKARG_RENDER structures in calls to the driver's DxgkDdiPresent and DxgkDdiRender functions, respectively.
The allocation list can grow and shrink after the context is created; however, the allocation list can never shrink smaller than the starting size that AllocationListSize specifies.
Note If DXGK_CREATECONTEXTFLAGS.GdiContext is set to 1, meaning that the context is created as a GDI-specific context, AllocationListSize must be set to a value of 256.
PatchLocationListSizeThe starting number of elements in an array of patch locations (that is, an array of D3DDDI_PATCHLOCATIONLIST structures) for the device in user mode and kernel mode. This number is the starting number of patch locations that the driver requests to be in the pPatchLocationListIn members of the DXGKARG_RENDER structures in calls to its DxgkDdiRender function.
The patch-location list can grow and shrink after the context is created; however, the patch-location list can never shrink smaller than the starting size that PatchLocationListSize specifies.
ReservedThis member is reserved and should be set to zero.
This member is available beginning with Windows 7.
CapsDescribes optional features supported by the context.
Supported starting with Windows 10.
PagingCompanionNodeIdSpecifies the zero-based engine identifier of the engine to use for this context paging companion.
Supported starting with Windows 10.
A display miniport driver specifies values for the DmaBufferSize and AllocationListSize members to guarantee that:
The display miniport driver can specify only aperture segments in the DmaBufferSegmentSet member; if the driver specifies a memory segment, a context-creation failure occurs.
If the driver sets DmaBufferSegmentSet to 0, the video memory manager allocates contiguous paged-locked memory, which is mapped write-combined memory, for the DMA buffers. Therefore, the GPU must access DMA buffers by using PCI cycles on computers where AGP transfers that occur outside the AGP aperture are not permitted.