diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-03-06 00:57:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-06 00:57:49 +0100 |
commit | b4d5c1ab5be236b3b2b9f6b3b5f3445a2285df72 (patch) | |
tree | 47c568523c3049d48f5f0dd9a2c14576d0d0aa29 /platform/android/export | |
parent | d592ee6be880ff65287cf6279a769b522b3d94f8 (diff) | |
parent | b0f782a0e323434df36276c87dfc4def1a93eade (diff) |
Merge pull request #26633 from akien-mga/driver-fallback-etc
Disable driver fallback to GLES2 by default
Diffstat (limited to 'platform/android/export')
-rw-r--r-- | platform/android/export/export.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 0f2455914d..fc26039c28 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -658,6 +658,8 @@ class EditorExportPlatformAndroid : public EditorExportPlatform { int orientation = p_preset->get("screen/orientation"); + bool min_gles3 = ProjectSettings::get_singleton()->get("rendering/quality/driver/driver_name") == "GLES3" && + !ProjectSettings::get_singleton()->get("rendering/quality/driver/fallback_to_gles2"); bool screen_support_small = p_preset->get("screen/support_small"); bool screen_support_normal = p_preset->get("screen/support_normal"); bool screen_support_large = p_preset->get("screen/support_large"); @@ -815,6 +817,11 @@ class EditorExportPlatformAndroid : public EditorExportPlatform { } } + if (tname == "uses-feature" && attrname == "glEsVersion") { + + encode_uint32(min_gles3 ? 0x00030000 : 0x00020000, &p_manifest.write[iofs + 16]); + } + iofs += 20; } @@ -1119,6 +1126,9 @@ public: r_features->push_back("etc"); } else if (driver == "GLES3") { r_features->push_back("etc2"); + if (ProjectSettings::get_singleton()->get("rendering/quality/driver/fallback_to_gles2")) { + r_features->push_back("etc"); + } } Vector<String> abis = get_enabled_abis(p_preset); |