// d3dkmddi.h
typedef struct _DXGK_VIRTUALMACHINEDATAFLAGS {
union {
struct {
UINT SecureVirtualMachine : 1;
UINT LinuxVirtualMachine : 1;
};
UINT Value;
};
} DXGK_VIRTUALMACHINEDATAFLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_VIRTUALMACHINEDATAFLAGS structure specifies attributes of the virtual machine (VM).
SecureVirtualMachineWhen set, specifies that the VM runs in secure mode.
LinuxVirtualMachineWhen set, specifies that the VM is Linux-based.
ValueUse to reference bits in the union.
For more information, see GPU paravitualization.