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

  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidMouseHandler.java 50 postTouchEvent(input, TouchEvent.TOUCH_MOVED, x, y, 0, timeStamp);
58 postTouchEvent(input, TouchEvent.TOUCH_SCROLLED, 0, 0, scrollAmount, timeStamp);
81 private void postTouchEvent (AndroidInput input, int type, int x, int y, int scrollAmount, long timeStamp) {
AndroidMultiTouchHandler.java 51 if (button != -1) postTouchEvent(input, TouchEvent.TOUCH_DOWN, x, y, realPointerIndex, button, timeStamp);
71 if (button != -1) postTouchEvent(input, TouchEvent.TOUCH_UP, x, y, realPointerIndex, button, timeStamp);
92 postTouchEvent(input, TouchEvent.TOUCH_DRAGGED, x, y, realPointerIndex, button, timeStamp);
94 postTouchEvent(input, TouchEvent.TOUCH_MOVED, x, y, realPointerIndex, 0, timeStamp);
136 private void postTouchEvent (AndroidInput input, int type, int x, int y, int pointer, int button, long timeStamp) {

Completed in 68 milliseconds