| 158 | } |
| 159 | |
| 160 | static void JNICALL java_processPointerUp(JNIEnv* env, jobject o, jint id, jint x, jint y, jint isMouse) { |
| 161 | Platform_Log4("POINTER %i (%i) - UP %i,%i", &id, &isMouse, &x, &y); |
| 162 | Input_RemoveTouch(id, x, y); |
| 163 | } |
| 164 | |
| 165 | static void JNICALL java_processPointerMove(JNIEnv* env, jobject o, jint id, jint x, jint y, jint isMouse) { |
| 166 | Platform_Log4("POINTER %i (%i) - MOVE %i,%i", &id, &isMouse, &x, &y); |
nothing calls this directly
no test coverage detected