diff options
author | Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> | 2023-03-20 15:28:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 15:28:58 +0100 |
commit | 8e87806c8ec9f39c7c08119ae71c3f24300f7a7f (patch) | |
tree | 184a3bf19fec7a87f9b721a6ad05863cbd6552d9 /platform/android/export/export_plugin.cpp | |
parent | 5cb37b725d2771560af8b4af221ceed35efbf124 (diff) | |
parent | f67d7fa137557322a561d4c8ca04f6e548d2aa59 (diff) | |
download | redot-engine-8e87806c8ec9f39c7c08119ae71c3f24300f7a7f.tar.gz |
Merge pull request #75106 from m4gr3d/set_vulkan_level_optional_main
Make vulkan level 1 an optional requirement
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index 3153b9ee24..a362b6370e 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -1066,7 +1066,7 @@ void EditorExportPlatformAndroid::_fix_manifest(const Ref<EditorExportPreset> &p if (_uses_vulkan()) { // Require vulkan hardware level 1 support feature_names.push_back("android.hardware.vulkan.level"); - feature_required_list.push_back(true); + feature_required_list.push_back(false); feature_versions.push_back(1); // Require vulkan version 1.0 |