aboutsummaryrefslogtreecommitdiff
path: root/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h
diff options
context:
space:
mode:
authorSheikh Dawood Abdul Ajees <[email protected]>2017-04-25 16:02:08 -0500
committerSheikh Dawood Abdul Ajees <[email protected]>2017-04-25 16:02:08 -0500
commitd11708e398c2f6377d9eac2b1f7248c62faab569 (patch)
tree5778e794690c046ab4b0205d8f764960a5af168b /PhysX_3.4/Source/LowLevel/software/include/PxsContext.h
parentPhysX 3.4, APEX 1.4 patch release @21821222 (diff)
downloadphysx-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/LowLevel/software/include/PxsContext.h')
-rw-r--r--PhysX_3.4/Source/LowLevel/software/include/PxsContext.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h b/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h
index e021b6cb..ed9da75e 100644
--- a/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h
+++ b/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h
@@ -97,38 +97,6 @@ enum PxsTouchEventCount
};
-
-class PxsCMUpdateTask : public Cm::Task
-{
-public:
-
- static const PxU32 BATCH_SIZE = 128;
-
- PxsCMUpdateTask(PxsContext* context, PxReal dt, PxsContactManager** cmArray, PxsContactManagerOutput* cmOutputs, Gu::Cache* caches, PxU32 cmCount,
- PxContactModifyCallback* callback):
- mCmArray(cmArray), mCmOutputs(cmOutputs), mCaches(caches), mCmCount(cmCount), mDt(dt), mContext(context), mCallback(callback)
- {
- }
-
- virtual void release();
-
- /*PX_FORCE_INLINE void insert(PxsContactManager* cm)
- {
- PX_ASSERT(mCmCount < BATCH_SIZE);
- mCmArray[mCmCount++]=cm;
- }*/
-
-protected:
- //PxsContactManager* mCmArray[BATCH_SIZE];
- PxsContactManager** mCmArray;
- PxsContactManagerOutput* mCmOutputs;
- Gu::Cache* mCaches;
- PxU32 mCmCount;
- PxReal mDt; //we could probably retrieve from context to save space?
- PxsContext* mContext;
- PxContactModifyCallback* mCallback;
-};
-
class PxsContext : public Ps::UserAllocated, public PxcNpContext
{
PX_NOCOPY(PxsContext)