Skip to content
Snippets Groups Projects
Commit 3d500f4a authored by Michael Migliore's avatar Michael Migliore Committed by Kitware Robot
Browse files

Merge topic 'fix-optix-crash'


06810032 Fix VisRTX crash when MDL lib is not found

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Acked-by: default avatarMathieu Westphal <mathieu.westphal@kitware.com>
Merge-request: !6378
parents c6fdf845 06810032
No related branches found
No related tags found
No related merge requests found
......@@ -35,10 +35,17 @@ namespace RTW
else
{
const std::string materialname = "::ospray::" + this->type;
this->material = rtx->CreateMDLMaterial(materialname.c_str(), (char*)OSPRay_mdl, (uint32_t) sizeof(OSPRay_mdl), 0, nullptr, VisRTX::CompilationType::INSTANCE);
if (!this->material)
try
{
this->material = rtx->CreateMDLMaterial(materialname.c_str(), (char*)OSPRay_mdl, (uint32_t) sizeof(OSPRay_mdl), 0, nullptr, VisRTX::CompilationType::INSTANCE);
}
catch(const std::exception&)
{
std::cerr << "CreateMDLMaterial failed! Falling back to BasicMaterial.\n";
this->material = nullptr;
}
if (!this->material)
{
this->material = rtx->CreateBasicMaterial();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment