Skip to content
Snippets Groups Projects
Commit fda331bb authored by Debi King (Dessie)'s avatar Debi King (Dessie)
Browse files

merge STORM-1275

parents 9d0c4177 0ef13640
No related branches found
No related tags found
No related merge requests found
...@@ -3374,6 +3374,12 @@ void LLPhysicsDecomp::doDecomposition() ...@@ -3374,6 +3374,12 @@ void LLPhysicsDecomp::doDecomposition()
LLCDMeshData mesh; LLCDMeshData mesh;
S32 stage = mStageID[mCurRequest->mStage]; S32 stage = mStageID[mCurRequest->mStage];
if (LLConvexDecomposition::getInstance() == NULL)
{
// stub library. do nothing.
return;
}
//load data intoLLCD //load data intoLLCD
if (stage == 0) if (stage == 0)
{ {
...@@ -3574,6 +3580,12 @@ void LLPhysicsDecomp::doDecompositionSingleHull() ...@@ -3574,6 +3580,12 @@ void LLPhysicsDecomp::doDecompositionSingleHull()
LLConvexDecomposition* decomp = LLConvexDecomposition::getInstance(); LLConvexDecomposition* decomp = LLConvexDecomposition::getInstance();
if (decomp == NULL)
{
//stub. do nothing.
return;
}
for (S32 i = 0; i < param_count; ++i) for (S32 i = 0; i < param_count; ++i)
{ {
decomp->setParam(params[i].mName, params[i].mDefault.mIntOrEnumValue); decomp->setParam(params[i].mName, params[i].mDefault.mIntOrEnumValue);
...@@ -3653,6 +3665,14 @@ void LLPhysicsDecomp::doDecompositionSingleHull() ...@@ -3653,6 +3665,14 @@ void LLPhysicsDecomp::doDecompositionSingleHull()
void LLPhysicsDecomp::run() void LLPhysicsDecomp::run()
{ {
LLConvexDecomposition* decomp = LLConvexDecomposition::getInstance(); LLConvexDecomposition* decomp = LLConvexDecomposition::getInstance();
if (decomp == NULL)
{
// stub library. Set init to true so the main thread
// doesn't wait for this to finish.
mInited = true;
return;
}
decomp->initThread(); decomp->initThread();
mInited = true; mInited = true;
......
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