// d3dkmdt.h
typedef struct _D3DKMT_DRIVERCAPS_EXT {
union {
struct {
UINT VirtualModeSupport : 1;
UINT Usb4MonitorSupport : 1;
UINT Reserved : 30;
};
UINT Value;
};
} D3DKMT_DRIVERCAPS_EXT;
View the official Windows Driver Kit DDI referenceNo description available.
The D3DKMT_DRIVERCAPS_EXT structure describes the extended capabilities of the display miniport driver (KMD).
VirtualModeSupportThe driver supports virtual mode.
Usb4MonitorSupportThe driver supports monitors connected via USB4.
ReservedReserved for future use.
ValueAn alternative way to access the capability bits.