DXGK_UPDATEHWCONTEXTSTATE_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmddi.h

typedef struct _DXGK_UPDATEHWCONTEXTSTATE_FLAGS {
  union {
    struct {
      UINT Suspended : 1;
      UINT InterruptOnSwitchCompletion : 1;
      UINT Reserved : 30;
    };
    UINT Value;
  };
} DXGK_UPDATEHWCONTEXTSTATE_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_DXGK_UPDATEHWCONTEXTSTATE_FLAGS structure

Description

Used to update the HW context state flags.

Members

Suspended

Used to suspend the context. Otherwise, the context is runnable.

InterruptOnSwitchCompletion

Used when the context state update is effective on the GPU.

Reserved

This value is reserved for system use.

Value

Used to operate over the rest of values.