| 144 | } |
| 145 | |
| 146 | static void JNICALL java_processKeyText(JNIEnv* env, jobject o, jstring str) { |
| 147 | char buffer[NATIVE_STR_LEN]; cc_string text; |
| 148 | String_InitArray(text, buffer); |
| 149 | |
| 150 | Java_DecodeString(env, str, &text); |
| 151 | Platform_Log1("KEY - TEXT %s", &text); |
| 152 | Event_RaiseString(&InputEvents.TextChanged, &text); |
| 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); |
nothing calls this directly
no test coverage detected