DXGK_DIAGNOSTIC_CATEGORIES - NtDoc

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

typedef struct _DXGK_DIAGNOSTIC_CATEGORIES {
  union {
    struct {
      UINT Notifications : 1;
      UINT Progressions : 1;
#if ...
      UINT Reserved : 30;
#else
      UINT Reserved : 31;
#endif
    };
    UINT Value;
  };
} DXGK_DIAGNOSTIC_CATEGORIES;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-dispmprt-_dxgk_diagnostic_categories)

_DXGK_DIAGNOSTIC_CATEGORIES structure

Description

Structure with a bit-field for each defined category of diagnostic.

Members

Notifications

An OS defined category which has diagnostic types defined in the DXGK_DIAGTYPE_NOTIFICATIONS structure.

Progressions

A DXGK_DIAGTYPE_PROGRESSIONS structure for indicating a Progressions diagnostic type.

Reserved

Reserved.

Value

Value of the categories.