mirror of https://github.com/axmolengine/axmol.git
Track bt to 3.09 #333
This commit is contained in:
parent
958f6c3a93
commit
e1352dbede
|
@ -16,7 +16,7 @@
|
|||
|
||||
## Bullet
|
||||
- Upstream: https://github.com/bulletphysics/bullet3
|
||||
- Version: 3.08
|
||||
- Version: 3.09
|
||||
- License: zlib
|
||||
|
||||
## c-ares
|
||||
|
|
|
@ -1411,7 +1411,7 @@ void btMultiBody::solveImatrix(const btSpatialForceVector &rhs, btSpatialMotionV
|
|||
}
|
||||
}
|
||||
|
||||
void btMultiBody::mulMatrix(btScalar *pA, btScalar *pB, int rowsA, int colsA, int rowsB, int colsB, btScalar *pC) const
|
||||
void btMultiBody::mulMatrix(const btScalar *pA, const btScalar *pB, int rowsA, int colsA, int rowsB, int colsB, btScalar *pC) const
|
||||
{
|
||||
for (int row = 0; row < rowsA; row++)
|
||||
{
|
||||
|
|
|
@ -745,7 +745,7 @@ private:
|
|||
}
|
||||
}
|
||||
|
||||
void mulMatrix(btScalar * pA, btScalar * pB, int rowsA, int colsA, int rowsB, int colsB, btScalar *pC) const;
|
||||
void mulMatrix(const btScalar *pA, const btScalar *pB, int rowsA, int colsA, int rowsB, int colsB, btScalar *pC) const;
|
||||
|
||||
private:
|
||||
btMultiBodyLinkCollider *m_baseCollider; //can be NULL
|
||||
|
|
Loading…
Reference in New Issue