Lines Matching refs:vectorPool
122 VectorPool vectorPool = sSystemRegistry.vectorPool; in castRay() local
123 Vector2 tempHitPoint = vectorPool.allocate(); in castRay()
124 Vector2 tempHitNormal = vectorPool.allocate(); in castRay()
144 vectorPool.release(tempHitPoint); in castRay()
145 vectorPool.release(tempHitNormal); in castRay()
183 VectorPool vectorPool = sSystemRegistry.vectorPool; in testBox() local
184 Vector2 worldTileOffset = vectorPool.allocate(); in testBox()
218 vectorPool.release(worldTileOffset); in testBox()
484 VectorPool vectorPool = sSystemRegistry.vectorPool; in testBoxAgainstList() local
487 Vector2 tempHitPoint = vectorPool.allocate(); in testBoxAgainstList()
501 Vector2 hitPoint = vectorPool.allocate(tempHitPoint); in testBoxAgainstList()
502 Vector2 hitNormal = vectorPool.allocate(segment.mNormal); in testBoxAgainstList()
516 vectorPool.release(tempHitPoint); in testBoxAgainstList()