mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-11 16:30:48 +00:00
Bullet Library v2.81
This commit is contained in:
parent
64fef8b2ad
commit
1eb94f4828
462 changed files with 59613 additions and 8036 deletions
|
|
@ -17,8 +17,8 @@ subject to the following restrictions:
|
|||
#include "PlatformDefinitions.h"
|
||||
|
||||
|
||||
#ifndef SEQUENTIAL_THREAD_SUPPORT_H
|
||||
#define SEQUENTIAL_THREAD_SUPPORT_H
|
||||
#ifndef BT_SEQUENTIAL_THREAD_SUPPORT_H
|
||||
#define BT_SEQUENTIAL_THREAD_SUPPORT_H
|
||||
|
||||
#include "LinearMath/btAlignedObjectArray.h"
|
||||
|
||||
|
|
@ -51,7 +51,7 @@ private:
|
|||
public:
|
||||
struct SequentialThreadConstructionInfo
|
||||
{
|
||||
SequentialThreadConstructionInfo (char* uniqueName,
|
||||
SequentialThreadConstructionInfo (const char* uniqueName,
|
||||
SequentialThreadFunc userThreadFunc,
|
||||
SequentiallsMemorySetupFunc lsMemoryFunc
|
||||
)
|
||||
|
|
@ -62,7 +62,7 @@ public:
|
|||
|
||||
}
|
||||
|
||||
char* m_uniqueName;
|
||||
const char* m_uniqueName;
|
||||
SequentialThreadFunc m_userThreadFunc;
|
||||
SequentiallsMemorySetupFunc m_lsMemoryFunc;
|
||||
};
|
||||
|
|
@ -85,8 +85,16 @@ public:
|
|||
{
|
||||
return 1;
|
||||
}
|
||||
virtual btBarrier* createBarrier();
|
||||
|
||||
virtual btCriticalSection* createCriticalSection();
|
||||
|
||||
virtual void deleteBarrier(btBarrier* barrier);
|
||||
|
||||
virtual void deleteCriticalSection(btCriticalSection* criticalSection);
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif //SEQUENTIAL_THREAD_SUPPORT_H
|
||||
#endif //BT_SEQUENTIAL_THREAD_SUPPORT_H
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue