Saxum/texture.cc

13 lines
278 B
C++
Raw Normal View History

2014-10-22 21:17:18 +00:00
#include "texture.hh"
Texture::Texture(std::string filePath) {
reference = ACGL::OpenGL::Texture2DFileManager::the()->get(ACGL::OpenGL::Texture2DCreator(filePath));
}
Texture::~Texture() {
}
ACGL::OpenGL::SharedTexture2D Texture::getReference() {
return reference;
}