OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:useRefCounting
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/extensions/gdx-bullet/src/com/badlogic/gdx/physics/bullet/
BulletBase.java
43
if (--refCount <= 0 && Bullet.
useRefCounting
)
101
if (refCount > 0 && Bullet.
useRefCounting
&& Bullet.enableLogging)
Bullet.java
38
protected static boolean
useRefCounting
= false;
49
* @param
useRefCounting
Whether to use reference counting, causing object to be destroyed when no longer referenced. You must
51
public static void init (boolean
useRefCounting
) {
52
init(
useRefCounting
, true);
57
* @param
useRefCounting
Whether to use reference counting, causing object to be destroyed when no longer referenced. You must
60
public static void init (boolean
useRefCounting
, boolean logging) {
61
Bullet.
useRefCounting
=
useRefCounting
;
Completed in 240 milliseconds