diff options
author | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-05-09 10:22:26 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-07-04 05:18:50 -0700 |
commit | 6b6428d779c8327ec051ab0b5114a2eaa3f1a3bf (patch) | |
tree | d00a6f93fb43fe812c7bef5aaf56aed3ba4510d4 /main | |
parent | c6a23a7a7d3f0747ccfdc11a56fc04f57feb867f (diff) | |
download | redot-engine-6b6428d779c8327ec051ab0b5114a2eaa3f1a3bf.tar.gz |
Fix ANRs reported by the Google Play Console
- Add support for dispatching input on the render thread (UI thread is the current default) when `input_buffering` and `accumulated_input` are disabled. At the expense of latency, this helps prevent 'heavy' applications / games from blocking the UI thread (the default behavior) which may cause the application to ANR.
- Remove GLSurfaceView logic causing the UI thread to wait on the GL thread during lifecycle events. The removed logic would cause the UI thread to ANR when the GL thread is blocked.
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index 0209f1cc4f..e6be23034d 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2939,6 +2939,8 @@ Error Main::setup2(bool p_show_boot_logo) { id->set_emulate_mouse_from_touch(bool(GLOBAL_DEF_BASIC("input_devices/pointing/emulate_mouse_from_touch", true))); } + GLOBAL_DEF("input_devices/buffering/android/use_accumulated_input", true); + GLOBAL_DEF("input_devices/buffering/android/use_input_buffering", true); GLOBAL_DEF_BASIC("input_devices/pointing/android/enable_long_press_as_right_click", false); GLOBAL_DEF_BASIC("input_devices/pointing/android/enable_pan_and_scale_gestures", false); GLOBAL_DEF_BASIC(PropertyInfo(Variant::INT, "input_devices/pointing/android/rotary_input_scroll_axis", PROPERTY_HINT_ENUM, "Horizontal,Vertical"), 1); |