// d3dkmddi.h
typedef struct _DXGK_SCHEDULING_LOG_ENTRY {
UINT64 GpuTimeStamp;
UINT OperationType : 32;
UINT ReservedOperationTypeBits : 32;
union {
DXGK_SCHEDULING_LOG_CONTEXT_STATE_CHANGE ContextStateChange;
UINT64 ReservedOperationData[2];
};
} DXGK_SCHEDULING_LOG_ENTRY;
View the official Windows Driver Kit DDI referenceNo description available.
Contains information about a scheduling log entry.
ContextStateChangePointer to a DXGK_SCHEDULING_LOG_CONTEXT_STATE_CHANGE structure that contains information about a scheduling log context state change event.
ReservedOperationDataThe number of reserved operation data.
GpuTimeStampThe GPU time stamp.
OperationTypePointer to a DXGK_SCHEDULING_LOG_OPERATION enumeration that contains information about a scheduling log operation.
ReservedOperationTypeBitsThe number of reserved operation type bits.