Home
last modified time | relevance | path

Searched refs:mLastStepTime (Results 1 – 2 of 2) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/view/
DGameView.java55 private long mLastStepTime; field in GameView
294 mLastStepTime = SystemClock.uptimeMillis();
358 float tau = (currentStepTime - mLastStepTime) * 0.001f;
359 mLastStepTime = currentStepTime;
/development/samples/ControllerSample/src/com/example/controllersample/
DGameView.java69 private long mLastStepTime; field in GameView
184 mLastStepTime = SystemClock.uptimeMillis(); in onWindowFocusChanged()
322 float tau = (currentStepTime - mLastStepTime) * 0.001f; in step()
323 mLastStepTime = currentStepTime; in step()