| 153 | } |
| 154 | |
| 155 | static void JNICALL java_processPointerDown(JNIEnv* env, jobject o, jint id, jint x, jint y, jint isMouse) { |
| 156 | Platform_Log4("POINTER %i (%i) - DOWN %i,%i", &id, &isMouse, &x, &y); |
| 157 | Input_AddTouch(id, x, y); |
| 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); |
nothing calls this directly
no test coverage detected