// d3dkmddi.h
DXGKDDI_UPDATEFLIPQUEUELOG DxgkddiUpdateflipqueuelog;
NTSTATUS DxgkddiUpdateflipqueuelog(
IN_CONST_HANDLE hAdapter,
INOUT_PDXGKARG_UPDATEFLIPQUEUELOG pUpdateFlipQueueLog
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The OS calls DXGKDDI_UPDATEFLIPQUEUELOG to request that the display driver update the hardware flip queue log.
hAdapter[in] Handle to a display adapter.
pUpdateFlipQueueLog[in/out] Pointer to a DXGKARG_UPDATEFLIPQUEUELOG structure containing the parameters for this function.
DXGKDDI_UPDATEFLIPQUEUELOG returns STATUS_SUCCESS. The driver should always return a success code.
See Hardware flip queue for more information.