D3DKMT_WDDM_2_7_CAPS - NtDoc

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

typedef struct _D3DKMT_WDDM_2_7_CAPS {
  union {
    struct {
      UINT HwSchSupported : 1;
      UINT HwSchEnabled : 1;
      UINT HwSchEnabledByDefault : 1;
      UINT IndependentVidPnVSyncControl : 1;
      UINT Reserved : 28;
    };
    UINT Value;
  };
} D3DKMT_WDDM_2_7_CAPS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmdt-d3dkmt_wddm_2_7_caps)

Description

Reserved for system use. Do not use.

Members

HwSchSupported

Supports hardware-accelerated GPU scheduling.

HwSchEnabled

Indicates that hardware-accelerated GPU scheduling is enabled.

HwSchEnabledByDefault

Indicates that hardware-accelerated GPU scheduling is enabled by default.

IndependentVidPnVSyncControl

The driver supports independent VidPn VSync control.

Reserved

Reserved.

Value

An alternative way to access the cap bits.

Remarks

The graphics kernel uses D3DKMT_WDDM_2_7_CAPS to store various capabilities introduced in Windows Display Driver Model (WDDM) version 2.7. The driver provides its support capabilities during initialization, so it already knows all the values specified in this structure.