1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Add CameraFeed support for Android

Co-authored-by: KOGA Mitsuhiro <shiena.jp@gmail.com>
This commit is contained in:
Leo de Penning
2025-04-18 22:20:21 +09:00
committed by KOGA Mitsuhiro
parent 209a446e36
commit 296ca79b9d
12 changed files with 666 additions and 2 deletions

View File

@@ -49,6 +49,7 @@ private:
jmethodID _get_data_dir = 0;
jmethodID _get_temp_dir = 0;
jmethodID _get_display_cutouts = 0;
jmethodID _get_display_rotation = 0;
jmethodID _get_display_safe_area = 0;
jmethodID _get_locale = 0;
jmethodID _get_model = 0;
@@ -90,4 +91,5 @@ public:
void set_screen_orientation(int p_orient);
int get_screen_orientation();
String get_system_dir(int p_dir, bool p_shared_storage);
int get_display_rotation();
};