安裝完Win10調試程序突然在這個地方報錯:
#if (defined(DEBUG) || defined(_DEBUG)) deviceFlags |= D3D11_CREATE_DEVICE_DEBUG; #endif /* (defined(DEBUG) || defined(_DEBUG)) */
錯誤信息如下:
D3D11CreateDevice: Flags (0x2) were specified which require the D3D11 SDK Layers for Windows 10, but they are not present on the system. These flags must be removed, or the Windows 10 SDK must be installed. Flags include: D3D11_CREATE_DEVICE_DEBUG
以前在win7 和Win8 下安裝完DirectX 的SDK就不錯了,在Win10 下則裝了DirectX也報錯(Win8 的SDK 和Win10 的SDK都裝了)
後來在MSDN的博客中發現:
Windows 10 optional feature: Graphics Tools
There are several scenarios where you need only minimal graphics tools on the target system. For example:
In these cases, all you need to install is the Windows 10 optional feature of “Graphics Tools”.
To install the Graphics Tools optional feature, go to the Settings panel, under System, Apps & features, Manage optional Features, Add a feature, and then look for “Graphics Tools”
Settings panel -> System -> Apps & features -> Manage optional Features -> Add a feature -> Select "Graphics Tools"
參考
Visual Studio 2015 and Graphics Tools for Windows 10
Use D3D11 debug layer with VS2013 on Windows 10