DXGKARG_FLIPOVERLAY - NtDoc

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

typedef struct _DXGKARG_FLIPOVERLAY {
  [in] HANDLE           hSource;
  [in] PHYSICAL_ADDRESS SrcPhysicalAddress;
  [in] UINT             SrcSegmentId;
  [in] VOID             *pPrivateDriverData;
  [in] UINT             PrivateDriverDataSize;
} DXGKARG_FLIPOVERLAY;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_DXGKARG_FLIPOVERLAY structure

Description

The DXGKARG_FLIPOVERLAY structure describes a new allocation to display for the overlay.

Members

hSource [in]

A handle to the source allocation to be displayed.

SrcPhysicalAddress [in]

The physical address, within the segment that SrcSegmentId specifies, of the allocation to be displayed.

SrcSegmentId [in]

The identifier of a segment in which the allocation is currently paged.

pPrivateDriverData [in]

A pointer to a block of private data that is passed from the user-mode display driver to the display miniport driver.

PrivateDriverDataSize [in]

The size, in bytes, of the block of private data that pPrivateDriverData points to.

See also

DxgkDdiFlipOverlay