Skip to content

Commit

Permalink
Merge branch 'main' of github.com:simul/Platform into main
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewRichards-Code committed Aug 7, 2024
2 parents d4957cc + 15031f6 commit 874c00b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Applications/Sfx/Compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,9 @@ int Compile(std::shared_ptr<ShaderInstance> shaderInstance
}
else
{
std::cerr << sourceFile.c_str() << "(0): error: failed to build shader " << shaderInstance->m_functionName.c_str()<<"\nLOG follows:\n" << log.str().c_str() << std::endl;
std::cerr << sourceFile.c_str() << "(0): error: failed to build shader " << shaderInstance->m_functionName.c_str()<<" with "<<sfxConfig.compilerPaths.size()<<" paths.\nLOG follows:\n" << log.str().c_str() << std::endl;
for(int i=0;i<sfxConfig.compilerPaths.size();i++)
std::cerr<<"Path "<<sfxConfig.compilerPaths[i].c_str()<<std::endl;
if (sfxOptions.verbose)
std::cerr << tempf.c_str() << "(0): info: generated temporary shader source file for " << shaderInstance->m_functionName.c_str()<<std::endl;
break;
Expand Down

0 comments on commit 874c00b

Please sign in to comment.