diff options
| author | Sheikh Dawood Abdul Ajees <[email protected]> | 2017-04-25 16:02:08 -0500 |
|---|---|---|
| committer | Sheikh Dawood Abdul Ajees <[email protected]> | 2017-04-25 16:02:08 -0500 |
| commit | d11708e398c2f6377d9eac2b1f7248c62faab569 (patch) | |
| tree | 5778e794690c046ab4b0205d8f764960a5af168b /PhysX_3.4/Source/PhysX/src/NpScene.cpp | |
| parent | PhysX 3.4, APEX 1.4 patch release @21821222 (diff) | |
| download | physx-3.4-d11708e398c2f6377d9eac2b1f7248c62faab569.tar.xz physx-3.4-d11708e398c2f6377d9eac2b1f7248c62faab569.zip | |
PhysX 3.4, APEX 1.4 patch release @22017166
Diffstat (limited to 'PhysX_3.4/Source/PhysX/src/NpScene.cpp')
| -rw-r--r-- | PhysX_3.4/Source/PhysX/src/NpScene.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/PhysX_3.4/Source/PhysX/src/NpScene.cpp b/PhysX_3.4/Source/PhysX/src/NpScene.cpp index 28d6a8e0..783436da 100644 --- a/PhysX_3.4/Source/PhysX/src/NpScene.cpp +++ b/PhysX_3.4/Source/PhysX/src/NpScene.cpp @@ -122,11 +122,11 @@ NpScene::NpScene(const PxSceneDesc& desc) : mSanityBounds (desc.sanityBounds), mNbClients (1), //we always have the default client. mClientBehaviorFlags (PX_DEBUG_EXP("sceneBehaviorFlags")), - mSceneCompletion (mPhysicsDone), - mCollisionCompletion (mCollisionDone), - mSceneExecution (0, "NpScene.execution"), - mSceneCollide (0, "NpScene.collide"), - mSceneAdvance (0, "NpScene.solve"), + mSceneCompletion (getContextId(), mPhysicsDone), + mCollisionCompletion (getContextId(), mCollisionDone), + mSceneExecution (getContextId(), 0, "NpScene.execution"), + mSceneCollide (getContextId(), 0, "NpScene.collide"), + mSceneAdvance (getContextId(), 0, "NpScene.solve"), mControllingSimulation (false), mSimThreadStackSize (0), mConcurrentWriteCount (0), |