Issue debugging shaders within Visual Studio 2012

Started by
3 comments, last by Migi0027 11 years, 1 month ago

I am trying to debug shader source code and step through the shader with breakpoints as would have been done in PIX. According to MSDN, Visual Studio 2012 should have this functionality integrated within the editor. However, when I try to debug the shaders for the DynamicShaderLinkage_FX2010 sample (as well as any other directX project including my own) visual studio says that there were "No Symbols Found" for the shader. I have looked through the MSDN forums and there doesn't seem to be much on this issue. Anyone else have this issue and been able to solve it?

J.W.
Advertisement

I am trying to debug shader source code and step through the shader with breakpoints as would have been done in PIX. According to MSDN, Visual Studio 2012 should have this functionality integrated within the editor. However, when I try to debug the shaders for the DynamicShaderLinkage_FX2010 sample (as well as any other directX project including my own) visual studio says that there were "No Symbols Found" for the shader. I have looked through the MSDN forums and there doesn't seem to be much on this issue. Anyone else have this issue and been able to solve it?

Did you compile the shaders with the debug flag as otherwise the HLSL compiler will not generate symbols to debug with.

Worked on titles: CMR:DiRT2, DiRT 3, DiRT: Showdown, GRID 2, theHunter, theHunter: Primal, Mad Max, Watch Dogs: Legion

Firstly, are you using Visual Studio Express? or Pro, Premium, or Ultimate? Shader debugging isn't available in Express.

Secondly, what process are you following to start debugging? Its something of a multi-step process.

throw table_exception("(? ???)? ? ???");

Yep. It was the debug flags. I feel so derp right now

J.W.

Yep. It was the debug flags. I feel so derp right now

Hehe, don't worry, it happens to us all wink.png

FastCall22: "I want to make the distinction that my laptop is a whore-box that connects to different network"

Blog about... stuff (GDNet, WordPress): www.gamedev.net/blog/1882-the-cuboid-zone/, cuboidzone.wordpress.com/

This topic is closed to new replies.

Advertisement