DXGK_DISPLAY_TECHNOLOGY - NtDoc

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

typedef enum _DXGK_DISPLAY_TECHNOLOGY {
  DXGK_DT_INVALID = 0,
  DXGK_DT_OTHER = 1,
  DXGK_DT_LCD = 2,
  DXGK_DT_OLED = 3,
  DXGK_DT_PROJECTOR = 4,
  DXGK_DT_MAX = 5
} DXGK_DISPLAY_TECHNOLOGY, *PDXGK_DISPLAY_TECHNOLOGY;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-d3dkmdt-_dxgk_display_technology)

DXGK_DISPLAY_TECHNOLOGY enumeration

Description

Enum used to specify the display technology being used.

Constants

DXGK_DT_INVALID:0

Invalid display technology type.

DXGK_DT_OTHER:1

A display technology which does not match one of the defined, valid types.

DXGK_DT_LCD:2

A display using an LCD panel.

DXGK_DT_OLED:3

A display using an OLED panel.

DXGK_DT_PROJECTOR:4

The display is a projector.

DXGK_DT_MAX:5

Maximum allowed value of this enumeration.