安裝完Win10調試程序忽然在這個地方報錯:ios
#if (defined(DEBUG) || defined(_DEBUG)) deviceFlags |= D3D11_CREATE_DEVICE_DEBUG; #endif /* (defined(DEBUG) || defined(_DEBUG)) */
錯誤信息以下:windows
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都裝了)app
後來在MSDN的博客中發現:工具
Windows 10 optional feature: Graphics Toolsvisual-studio
There are several scenarios where you need only minimal graphics tools on the target system. For example:ui
- Install the D3D SDK Layers so that your application can create a D3D Debug device
- Use DXCAP command line tool to capture and playback D3D graphics log file
- Scripting of API traces or doing regression testing on a lab machine
In these cases, all you need to install is the Windows 10 optional feature of 「Graphics Tools」.spa
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"debug
用管理員身份打開命令行工具(cmd),執行以下命令:調試
Dism /online /add-capability /capabilityname:Tools.Graphics.DirectX~~~~0.0.1.0
參考