From a667e84aac29bdaf783a541c393f0424f30d35cf Mon Sep 17 00:00:00 2001 From: psperl Date: Mon, 3 Sep 2007 18:18:38 +0000 Subject: [PATCH] PJS inital texture manager class git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@384 6778bc44-b910-0410-a7a0-be141de4315d --- src/projectM-engine/TextureManager.cpp | 5 +++++ src/projectM-engine/TextureManager.hpp | 1 + 2 files changed, 6 insertions(+) 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); };