// d3dkmddi.h
typedef struct _DXGKARG_CREATEPERIODICFRAMENOTIFICATION {
HANDLE hAdapter;
D3DDDI_VIDEO_PRESENT_SOURCE_ID VidPnTargetId;
UINT64 Time;
UINT NotificationID;
HANDLE hNotification;
} DXGKARG_CREATEPERIODICFRAMENOTIFICATION;
View the official Windows Driver Kit DDI referenceNo description available.
The arguments needed to create a periodic frame notification.
hAdapterA handle to the adapter associated with VidPnSourceID.
VidPnTargetIdThe output that the compositor wishes to receive notifications for.
TimeRepresents an offset before the VSync. The Time value may not be longer than a VSync interval while in VSync mode. In units of 100ns.
NotificationIDRepresents an ID for the notification that will be used to track which interrupt has fired from the GPU.
hNotificationA Handle to the notification object, later used to destroy the object.