OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_paircache
(Results
1 - 7
of
7
) sorted by null
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btSimpleBroadphase.cpp
42
:
m_pairCache
(overlappingPairCache),
50
m_pairCache
= new (mem)btHashedOverlappingPairCache();
81
m_pairCache
->~btOverlappingPairCache();
82
btAlignedFree(
m_pairCache
);
137
m_pairCache
->removeOverlappingPairsContainingProxy(proxyOrg,dispatcher);
242
if ( !
m_pairCache
->findPair(proxy0,proxy1))
244
m_pairCache
->addOverlappingPair(proxy0,proxy1);
248
if (!
m_pairCache
->hasDeferredRemoval())
250
if (
m_pairCache
->findPair(proxy0,proxy1))
252
m_pairCache
->removeOverlappingPair(proxy0,proxy1,dispatcher)
[
all
...]
btSimpleBroadphase.h
92
btOverlappingPairCache*
m_pairCache
;
143
return
m_pairCache
;
147
return
m_pairCache
;
btDbvtBroadphase.cpp
107
pbp->
m_paircache
->addOverlappingPair(pa,pb);
137
m_paircache
= paircache? paircache : new(btAlignedAlloc(sizeof(btHashedOverlappingPairCache),16)) btHashedOverlappingPairCache();
155
m_paircache
->~btOverlappingPairCache();
156
btAlignedFree(
m_paircache
);
201
m_paircache
->removeOverlappingPairsContainingProxy(proxy,dispatcher);
396
printf("fixed(%u) dynamics(%u) pairs(%u)\r\n",m_sets[1].m_leaves,m_sets[0].m_leaves,
m_paircache
->getNumOverlappingPairs());
420
if (
m_paircache
->hasDeferredRemoval())
423
btBroadphasePairArray& overlappingPairArray =
m_paircache
->getOverlappingPairArray();
474
m_paircache
->cleanOverlappingPair(pair,dispatcher);
529
m_paircache
->removeOverlappingPairsContainingProxy(current,dispatcher)
[
all
...]
btAxisSweep3.h
88
btOverlappingPairCache*
m_pairCache
;
164
return
m_pairCache
;
168
return
m_pairCache
;
355
m_pairCache
(pairCache),
363
if (!
m_pairCache
)
366
m_pairCache
= new(ptr) btHashedOverlappingPairCache();
373
m_raycastAccelerator = new (btAlignedAlloc(sizeof(btDbvtBroadphase),16)) btDbvtBroadphase(m_nullPairCache);//
m_pairCache
);
453
m_pairCache
->~btOverlappingPairCache();
454
btAlignedFree(
m_pairCache
);
569
if (!
m_pairCache
->hasDeferredRemoval()
[
all
...]
btOverlappingPairCache.cpp
75
btOverlappingPairCache*
m_pairCache
;
81
m_pairCache
(pairCache),
90
m_pairCache
->cleanOverlappingPair(pair,m_dispatcher);
575
btOverlappingPairCache*
m_pairCache
;
581
m_pairCache
(pairCache),
590
m_pairCache
->cleanOverlappingPair(pair,m_dispatcher);
btDbvtBroadphase.h
73
btOverlappingPairCache*
m_paircache
; // Pair cache
member in struct:btDbvtBroadphase
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Dynamics/
btDiscreteDynamicsWorld.cpp
800
btOverlappingPairCache*
m_pairCache
;
808
m_pairCache
(pairCache),
852
btBroadphasePair* collisionPair =
m_pairCache
->findPair(m_me->getBroadphaseHandle(),proxy0);
[
all
...]
Completed in 759 milliseconds