在 Visual Studio 中编译时验证 HLSL 文件
我正在寻找一种在 Visual Studio 程序编译时检测 HLSL 文件中错误的简单方法。我想向我的着色器文件添加一个自定义构建来编译它们,并确保如果我做了一些愚蠢的事情(例如引用未定义的变量或其他在应用程序中编译着色器时会检测到的事情),构建会失败。
以前有人成功设置过这个吗?
I'm looking for an easy way of detecting errors in HLSL file at program compile time from visual studio. I want to add a custom build to my shader files that compiles them and make sure the build fail if I did something stupid like referring an undefined variable or other things that otherwise would be detected when compiling the shader in the application.
Have anyone successfully setup this before?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意,VS2012具有自动编译着色器文件的功能。
Note that VS2012 has automatic compilation of shader files.
对于任何过来的人,这里有一个关于如何在 VS2010 中执行此操作的方便(且更冗长)的指南:
http://takeinitiative.net/2011/02/19/debugging-hlsl/
For anyone coming by, here's a handy (and more wordy) guide on how to do it in VS2010:
http://takinginitiative.net/2011/02/19/debugging-hlsl/