// d3d10umddi.h
typedef enum D3D11_UMD_MODE {
D3D11_UMD_MODE_NATIVE11,
D3D11_UMD_MODE_SYSTEM11ON12,
D3D11_UMD_MODE_VENDOR11ON12
} ;
View the official Windows Driver Kit DDI referenceNo description available.
The D3D11_UMD_MODE enumeration specifies the mode that a native D3D11 user-mode driver wants to run in.
D3D11_UMD_MODE_NATIVE11Use the IHV's native D3D11 UMD without enlightment.
D3D11_UMD_MODE_SYSTEM11ON12Use the version of 11on12 that ships with the operating system.
D3D11_UMD_MODE_VENDOR11ON12Use the IHV's native D3D11 UMD with 11on12 enlightment.
For more information, see D3D11On12 open source code.