From 3b1e62bc7ce9a0d8b48bb27661b328f7e6daabc7 Mon Sep 17 00:00:00 2001 From: Fredy Huya-Kouadio Date: Mon, 25 Apr 2022 00:03:00 -0700 Subject: Fix the issue causing the screen to be black after resuming when in low processor mode. This is done by forcing a redraw and buffers swap when resuming the app. --- platform/android/java_godot_lib_jni.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'platform/android/java_godot_lib_jni.cpp') diff --git a/platform/android/java_godot_lib_jni.cpp b/platform/android/java_godot_lib_jni.cpp index ea72bc0e15..5e0a9d967b 100644 --- a/platform/android/java_godot_lib_jni.cpp +++ b/platform/android/java_godot_lib_jni.cpp @@ -503,6 +503,8 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_onRendererResumed(JNI return; } + // We force redraw to ensure we render at least once when resuming the app. + Main::force_redraw(); if (os_android->get_main_loop()) { os_android->get_main_loop()->notification(MainLoop::NOTIFICATION_APPLICATION_RESUMED); } -- cgit v1.2.3