OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nano2seconds
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
PerformanceCounters.java
23
private final static float
nano2seconds
= 1f / 1000000000.0f;
field in class:PerformanceCounters
42
if (lastTick > 0L) tick((t - lastTick) *
nano2seconds
);
PerformanceCounter.java
29
private final static float
nano2seconds
= 1f / 1000000000.0f;
field in class:PerformanceCounter
59
if (lastTick > 0L) tick((t - lastTick) *
nano2seconds
);
90
current += (TimeUtils.nanoTime() - startTime) *
nano2seconds
;
Completed in 76 milliseconds