mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-26 04:25:56 +00:00
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@383 6778bc44-b910-0410-a7a0-be141de4315d
17 lines
266 B
C++
17 lines
266 B
C++
#include "TextureManager.hpp"
|
|
|
|
TextureManager::TextureManager(std::string _presetURL): presetURL(_presetURL)
|
|
{
|
|
;
|
|
}
|
|
|
|
void TextureManager::loadTextures(PresetOutputs::cshape_container &shapes)
|
|
{
|
|
;
|
|
}
|
|
|
|
GLuint TextureManager::getTexture(std::string imageUrl)
|
|
{
|
|
;
|
|
}
|