Reputation: 5170
My Visual Studio version does not have GPU debugger option. is it because of the version itself or should I download some updates? The version is "Microsoft Visual Studio Express 2012 for Windows Desktop Version 11.0.60315.01 Update 2","Windows 7 home premium SP1" what about libraries, where can I get them?
Upvotes: 1
Views: 346
Reputation: 13723
For windows 7 there are some additional downloads. It is not supported out of the box.
This will give you debugging on the WARP software emulator on windows 7. You GPU, and more importantly the driver you have for it may or may not support debugging.
I believe GPU debugging is supported on Express, it was for the VS11 Preview.
This should get you started.
Upvotes: 2
Reputation: 6260
Debugging is supported on Windows 7, Windows 8, Windows Server 2008 R2, and Windows Server 2012. For debugging on the software emulator, Windows 8, or Windows Server 2012 is required. For debugging on the hardware, you must install the drivers for your graphics card. Not all hardware vendors implement all debugger features. See the vendor documentation for limitations.
Independent hardware vendors who want to support GPU debugging in Visual Studio must create a DLL that implements the VSD3DDebug interface and targets their own drivers.
Source: http://msdn.microsoft.com/en-us/library/vstudio/hh873126.aspx
Upvotes: 2