We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks a lot of this awesome project! It really helped me a lot setting up a basic PBR rendering pipeline.
Sadly I wasn't able to build the executable with VS2022,
I get a list of compile errors like...
Severity Code Description Project File Line Suppression State Error C2102 '&' requires l-value PBR C:\Users\pixtur\dev\__research\PBR\src\d3d12.cpp 377
I already installed Vulcan. Does this error indicate that I also need a special version of DX12?
I there by any chance a prebuilt windows executable available?
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
add #include <stdexcept> to mesh.cpp
#include <stdexcept>
remove the /std:c++latest compiler option from PBR property pages -> Configuration Properties -> C/C++ -> Command Line -> Additional Options
/std:c++latest
change from $(ProjectDir) to ..\..\data in PBR property pages -> Configuration Properties -> Debugging -> Working Directory
$(ProjectDir)
..\..\data
ps. if you still get C2102 errors, try setting No in PBR property pages -> Configuration Properties -> C/C++ -> Language -> Conformance Mode
No
No branches or pull requests
Thanks a lot of this awesome project! It really helped me a lot setting up a basic PBR rendering pipeline.
Sadly I wasn't able to build the executable with VS2022,
I get a list of compile errors like...
I already installed Vulcan. Does this error indicate that I also need a special version of DX12?
I there by any chance a prebuilt windows executable available?
The text was updated successfully, but these errors were encountered: