DXGK_SCHEDULING_LOG_ENTRY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

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

_DXGK_SCHEDULING_LOG_ENTRY structure

Description

Contains information about a scheduling log entry.

Members

ContextStateChange

Pointer to a DXGK_SCHEDULING_LOG_CONTEXT_STATE_CHANGE structure that contains information about a scheduling log context state change event.

ReservedOperationData

The number of reserved operation data.

GpuTimeStamp

The GPU time stamp.

OperationType

Pointer to a DXGK_SCHEDULING_LOG_OPERATION enumeration that contains information about a scheduling log operation.

ReservedOperationTypeBits

The number of reserved operation type bits.

Remarks

See also