diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-03-03 14:12:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-03 14:12:03 +0100 |
commit | af6217e1b127df341668b9f03f1f76f4c8c562e5 (patch) | |
tree | 7040db5f82b5892d95557b029275d4946327d3b2 /platform/android/export/export.cpp | |
parent | 86f4fabd468d107ca2546cd11c3232811764dd1d (diff) | |
parent | 9d002442b288132348fd1360a2cb7652a3f77aed (diff) |
Merge pull request #26523 from akien-mga/export-etc-check
Improve VRAM texture compression checks for mobile/web
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 8d9d9c697e..8ffd355219 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1114,16 +1114,10 @@ public: public: virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) { - // Re-enable when a GLES 2.0 backend is read - /*int api = p_preset->get("graphics/api"); - if (api == 0) - r_features->push_back("etc"); - else*/ String driver = ProjectSettings::get_singleton()->get("rendering/quality/driver/driver_name"); - if (driver == "GLES2" || driver == "GLES3") { + if (driver == "GLES2") { r_features->push_back("etc"); - } - if (driver == "GLES3") { + } else if (driver == "GLES3") { r_features->push_back("etc2"); } |