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/uwp/os_uwp.cpp | |
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/uwp/os_uwp.cpp')
-rw-r--r-- | platform/uwp/os_uwp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/os_uwp.cpp b/platform/uwp/os_uwp.cpp index 520e179611..637ef5aaef 100644 --- a/platform/uwp/os_uwp.cpp +++ b/platform/uwp/os_uwp.cpp @@ -889,7 +889,7 @@ String OS_UWP::get_user_data_dir() const { } bool OS_UWP::_check_internal_feature_support(const String &p_feature) { - return p_feature == "pc" || p_feature == "s3tc"; + return p_feature == "pc"; } OS::PowerState OS_UWP::get_power_state() { |