HomeSort by relevance Sort by last modified time
    Searched defs:trackball (Results 1 - 2 of 2) sorted by null

  /external/qemu/android/
qemulator.h 31 SkinTrackBall* trackball; member in struct:__anon10483
  /external/replicaisland/src/com/replica/replicaisland/
InputGameInterface.java 29 // Raw trackball input is filtered by this value. Increasing it will
116 // keys or trackball
117 final InputXY trackball = input.getTrackball(); local
124 if (trackball.getLastPressedTime() > Math.max(leftPressedTime, rightPressedTime)) {
125 // The trackball never goes "up", so force it to turn off if it wasn't triggered in the last frame.
126 // What follows is a bunch of code to filter trackball events into something like a dpad event.
131 if (gameTime - trackball.getLastPressedTime() < ROLL_TIMEOUT) {
136 newX = mDirectionalPad.getX() + (trackball.getX() * ROLL_FILTER * mMovementSensitivity);
137 newY = mDirectionalPad.getY() + (trackball.getY() * ROLL_FILTER * mMovementSensitivity);
141 newX = oldX + (trackball.getX() * ROLL_FILTER * mMovementSensitivity)
    [all...]

Completed in 6776 milliseconds