diff options
| author | Juan Linietsky <juan@godotengine.org> | 2019-02-26 11:58:47 -0300 |
|---|---|---|
| committer | Juan Linietsky <juan@godotengine.org> | 2019-02-26 11:58:47 -0300 |
| commit | 5eeb06ffd1bf9cc79142760c372c17cd858cbe49 (patch) | |
| tree | 824bdca6e0072ff877a1944c5b2c248c2bca0fbb /platform/android | |
| parent | 329904598829dcbed462b012dee39bc37d7d7c83 (diff) | |
| download | redot-engine-5eeb06ffd1bf9cc79142760c372c17cd858cbe49.tar.gz | |
-Remove harcoded opengl extension testing from OS, ask rasterizer instead.
-Fixed a bug where etc textures were imported broken
Diffstat (limited to 'platform/android')
| -rw-r--r-- | platform/android/os_android.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/os_android.cpp b/platform/android/os_android.cpp index 3ba8468e0b..b86976843c 100644 --- a/platform/android/os_android.cpp +++ b/platform/android/os_android.cpp @@ -706,7 +706,7 @@ String OS_Android::get_joy_guid(int p_device) const { } bool OS_Android::_check_internal_feature_support(const String &p_feature) { - if (p_feature == "mobile" || p_feature == "etc" || p_feature == "etc2") { + if (p_feature == "mobile") { //TODO support etc2 only if GLES3 driver is selected return true; } |
