DXGK_QUERYADAPTERINFOFLAGS structure (d3dkmddi.h)

The DXGK_QUERYADAPTERINFOFLAGS structure specifies flags to use when querying graphics adapter information.

Syntax

typedef struct _DXGK_QUERYADAPTERINFOFLAGS {
  union {
    struct {
      UINT VirtualMachineData : 1;
      UINT SecureVirtualMachine : 1;
      UINT Reserved : 30;
    };
    UINT Value;
  };
} DXGK_QUERYADAPTERINFOFLAGS;

Members

VirtualMachineData

Set when the call comes from a virtual machine.

SecureVirtualMachine

Specifies that the virtual machine runs in secure mode.

Reserved

This member is reserved and should be set to zero.

Value

A convenient way to access the flags.

Requirements

Requirement Value
Minimum supported client Windows 10, version 1803 (WDDM 2.4)
Header d3dkmddi.h

See also

DXGKARG_QUERYADAPTERINFO

DxgkDdiQueryAdapterInfo