D3DKMT_WDDM_3_1_CAPS - NtDoc

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

typedef struct _D3DKMT_WDDM_3_1_CAPS {
  union {
    struct {
      UINT NativeGpuFenceSupported : 1;
      UINT Reserved : 31;
    };
    UINT Value;
  };
} D3DKMT_WDDM_3_1_CAPS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

Reserved for system use. Do not use.

Members

NativeGpuFenceSupported

Specifies whether the native GPU fence feature is supported by this GPU. For more information about the native GPU fence feature, see Native GPU fence.

Reserved

Reserved for system use.

Value

An alternative way to access the cap bits.

Remarks

The graphics kernel uses D3DKMT_WDDM_3_1_CAPS to store various capabilities introduced in WDDM version 3.1. The driver provides its support capabilities during initialization, so it already knows all the values specified in this structure.