diff options
author | sfan5 <sfan5@live.de> | 2023-03-05 15:10:44 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2023-04-08 20:19:35 +0200 |
commit | 9d736e8b8baeeacad9cfa94edd18adfcaf000029 (patch) | |
tree | 6799a199edaeb82481edea6f101dc744b4507e9f /src/gui/guiEngine.h | |
parent | c26e122485a7180edf434c0c1211713ff377d6d7 (diff) | |
download | minetest-9d736e8b8baeeacad9cfa94edd18adfcaf000029.tar.xz |
Drop ENABLE_GLES option
ENABLE_GLES predates forking Irrlicht. Its primary use was to distinguish Irrlicht-ogles from upstream version as Minetest could be compiled with either.
That's not necessary anymore and gets in the way sometimes.
Diffstat (limited to 'src/gui/guiEngine.h')
-rw-r--r-- | src/gui/guiEngine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/guiEngine.h b/src/gui/guiEngine.h index 2f182ca81..a95bb3085 100644 --- a/src/gui/guiEngine.h +++ b/src/gui/guiEngine.h @@ -111,8 +111,8 @@ public: private: /** driver to get textures from */ video::IVideoDriver *m_driver = nullptr; - /** set of texture names to delete */ - std::set<std::string> m_to_delete; + /** set of textures to delete */ + std::vector<video::ITexture*> m_to_delete; }; /** GUIEngine specific implementation of OnDemandSoundFetcher */ |