OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fpsText
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsAppState.java
60
protected BitmapText
fpsText
;
73
* so that the
fpsText
can be created before init. This
75
*
fpsText
... unfortunately.
79
this.
fpsText
= new BitmapText(guiFont, false);
83
return
fpsText
;
101
if (
fpsText
!= null) {
102
fpsText
.setCullHint(show ? CullHint.Never : CullHint.Always);
144
if (
fpsText
== null) {
145
fpsText
= new BitmapText(guiFont, false);
148
fpsText
.setLocalTranslation(0, fpsText.getLineHeight(), 0)
[
all
...]
SimpleApplication.java
76
protected BitmapText
fpsText
;
213
// Some of the tests rely on having access to
fpsText
216
fpsText
= stateManager.getState(StatsAppState.class).getFpsText();
Completed in 35 milliseconds