DXGK_MAPAPERTUREFLAGS structure (d3dkmddi.h)
The DXGK_MAPAPERTUREFLAGS structure identifies the type of map-aperture-segment operation to set up in a call to the DxgkDdiBuildPagingBuffer function.
Syntax
typedef struct _DXGK_MAPAPERTUREFLAGS {
union {
struct {
UINT CacheCoherent : 1;
UINT Reserved : 31;
};
[in] UINT Value;
};
} DXGK_MAPAPERTUREFLAGS;
Members
[in] CacheCoherent
A UINT value that specifies whether cache coherency is required for pages that are mapped in a call to DxgkDdiBuildPagingBuffer. If this member is set, the driver must ensure that cache coherency is enforced on the pages that are mapped. If this member is not set, cache coherency is not required for the pages that are mapped.
Setting this member is equivalent to setting the first bit of the 32-bit Value member (0x00000001).
[in] Reserved
This member is reserved and should be set to zero. Setting this member to zero is equivalent to setting the remaining 31 bits (0xFFFFFFFE) of the 32-bit Value member to zeros.
[in] Value
A member in the union that DXGK_MAPAPERTUREFLAGS contains that can hold a 32-bit value that identifies the type of map-aperture-segment-operation.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista |
Header | d3dkmddi.h (include D3dkmddi.h) |