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/x11 | |
| 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/x11')
| -rw-r--r-- | platform/x11/os_x11.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp index 879642d8f9..6a09c507c6 100644 --- a/platform/x11/os_x11.cpp +++ b/platform/x11/os_x11.cpp @@ -2593,7 +2593,7 @@ Error OS_X11::shell_open(String p_uri) { bool OS_X11::_check_internal_feature_support(const String &p_feature) { - return p_feature == "pc" || p_feature == "s3tc" || p_feature == "bptc"; + return p_feature == "pc"; } String OS_X11::get_config_path() const { |
