// 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 referenceNo description available.
Enum used to specify the display technology being used.
DXGK_DT_INVALID:0Invalid display technology type.
DXGK_DT_OTHER:1A display technology which does not match one of the defined, valid types.
DXGK_DT_LCD:2A display using an LCD panel.
DXGK_DT_OLED:3A display using an OLED panel.
DXGK_DT_PROJECTOR:4The display is a projector.
DXGK_DT_MAX:5Maximum allowed value of this enumeration.