


For more info about creating a device, see the D3D11CreateDevice function. You can either try to recreate a device at a lower feature level or you can choose to exit the application. If the device creation works, that feature level exists, if not, the hardware does not support that feature level. Now when you create a device, you can attempt to create a device for the feature level that you want to request. For instance, the 9_1 feature level implements the functionality that was implemented in Microsoft Direct3D 9, which exposes the capabilities of shader models ps_2_x and vs_2_x, while the 11_0 feature level implements the functionality that was implemented in Direct3D 11. A feature level is a well-defined set of GPU functionality. With Direct3D 11, a new paradigm is introduced called feature levels.

In prior versions of Microsoft Direct3D, you could find out the version of Direct3D the video card implemented, and then program your application accordingly. This topic discusses Direct3D feature levels.Įach video card implements a certain level of Microsoft DirectX (DX) functionality depending on the graphics processing units (GPUs) installed. To handle the diversity of video cards in new and existing machines, Microsoft Direct3D 11 introduces the concept of feature levels.
