diff --git a/src/projectM-engine/TextureManager.cpp b/src/projectM-engine/TextureManager.cpp index aab7422a5..deaa8c781 100644 --- a/src/projectM-engine/TextureManager.cpp +++ b/src/projectM-engine/TextureManager.cpp @@ -10,6 +10,11 @@ void TextureManager::loadTextures(PresetOutputs::cshape_container &shapes) ; } +void TextureManager::unloadTextures(PresetOutputs::cshape_container &shapes) +{ + ; +} + GLuint TextureManager::getTexture(std::string imageUrl) { ; diff --git a/src/projectM-engine/TextureManager.hpp b/src/projectM-engine/TextureManager.hpp index e2884bf1e..3d286f7ab 100644 --- a/src/projectM-engine/TextureManager.hpp +++ b/src/projectM-engine/TextureManager.hpp @@ -15,6 +15,7 @@ public: TextureManager(std::string _presetURL); void loadTextures(PresetOutputs::cshape_container &shapes); + void unloadTextures(PresetOutputs::cshape_container &shapes); GLuint getTexture(std::string imageUrl); };