// d3dkmddi.h
typedef struct _DXGK_MULTIPLANE_OVERLAY_VSYNC_INFO3 {
DWORD LayerIndex;
ULONG FirstFreeFlipQueueLogEntryIndex;
} DXGK_MULTIPLANE_OVERLAY_VSYNC_INFO3;
View the official Windows Driver Kit DDI referenceNo description available.
The display miniport driver uses DXGK_MULTIPLANE_OVERLAY_VSYNC_INFO3 to report per-plane flip completion after a Vsync.
LayerIndexThe zero-based index of the overlay plane to display. The top plane (in the z-direction) has index zero. The planes' index values must be sequential from top to bottom.
FirstFreeFlipQueueLogEntryIndexThe index after the last written entry in the flip queue log buffer.
DXGK_MULTIPLANE_OVERLAY_VSYNC_INFO3 is a member of the DXGKARGCB_NOTIFY_INTERRUPT_DATA structure. It is filled out by the driver to report each plane’s flip completion after a Vsync occurs in the hardware flip queue model. It should be filled out when the display adapter generates an interrupt after a Vsync.
DXGK_MULTIPLANE_OVERLAY_VSYNC_INFO2
DXGKARGCB_NOTIFY_INTERRUPT_DATA