HomeSort by relevance Sort by last modified time
    Searched refs:Pool (Results 51 - 75 of 219) sorted by null

1 23 4 5 6 7 8 9

  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
Collision.java 22 /** Pool of Vector3, used by native (callback) method for the arguments */
23 public final static com.badlogic.gdx.utils.Pool<Vector3> poolVector3 = new com.badlogic.gdx.utils.Pool<Vector3>() {
33 /** Pool of Quaternion, used by native (callback) method for the arguments */
34 public final static com.badlogic.gdx.utils.Pool<Quaternion> poolQuaternion = new com.badlogic.gdx.utils.Pool<Quaternion>() {
44 /** Pool of Matrix3, used by native (callback) method for the arguments */
45 public final static com.badlogic.gdx.utils.Pool<Matrix3> poolMatrix3 = new com.badlogic.gdx.utils.Pool<Matrix3>() {
55 /** Pool of Matrix4, used by native (callback) method for the arguments *
    [all...]
btBroadphasePair.java 67 /** Pool of btBroadphasePair instances, used by director interface to provide the arguments. */
68 protected static final com.badlogic.gdx.utils.Pool<btBroadphasePair> pool = new com.badlogic.gdx.utils.Pool<btBroadphasePair>() { field in class:btBroadphasePair
76 final btBroadphasePair result = pool.obtain();
83 pool.free(inst);
btBroadphaseProxy.java 67 /** Pool of btBroadphaseProxy instances, used by director interface to provide the arguments. */
68 protected static final com.badlogic.gdx.utils.Pool<btBroadphaseProxy> pool = new com.badlogic.gdx.utils.Pool<btBroadphaseProxy>() { field in class:btBroadphaseProxy
76 final btBroadphaseProxy result = pool.obtain();
83 pool.free(inst);