You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
add support for the boneheaded method of receiving input events that is used by NativeActivity apps
currently, our "not-actually-a-queue" implementation is quite ugly, hopefully it might be possible to make it look somewhat sane while not needing to make it as much of a queue as it is on android
This commit is contained in:
@@ -122,18 +122,18 @@ JNIEXPORT void JNICALL Java_android_app_NativeActivity_onSurfaceDestroyedNative
|
||||
/*
|
||||
* Class: android_app_NativeActivity
|
||||
* Method: onInputQueueCreatedNative
|
||||
* Signature: (JI)V
|
||||
* Signature: (JJ)V
|
||||
*/
|
||||
JNIEXPORT void JNICALL Java_android_app_NativeActivity_onInputQueueCreatedNative
|
||||
(JNIEnv *, jobject, jlong, jint);
|
||||
(JNIEnv *, jobject, jlong, jlong);
|
||||
|
||||
/*
|
||||
* Class: android_app_NativeActivity
|
||||
* Method: onInputQueueDestroyedNative
|
||||
* Signature: (JI)V
|
||||
* Signature: (JJ)V
|
||||
*/
|
||||
JNIEXPORT void JNICALL Java_android_app_NativeActivity_onInputQueueDestroyedNative
|
||||
(JNIEnv *, jobject, jlong, jint);
|
||||
(JNIEnv *, jobject, jlong, jlong);
|
||||
|
||||
/*
|
||||
* Class: android_app_NativeActivity
|
||||
|
||||
Reference in New Issue
Block a user