aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/texturecache.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/YAGE/texturecache.hpp')
-rw-r--r--include/YAGE/texturecache.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/YAGE/texturecache.hpp b/include/YAGE/texturecache.hpp
index 43266ee9..4969b27b 100644
--- a/include/YAGE/texturecache.hpp
+++ b/include/YAGE/texturecache.hpp
@@ -1,7 +1,7 @@
#ifndef TEXTURE_CACHE_HPP
#define TEXTURE_CACHE_HPP
-#include "gltexture.hpp"
+#include "texture.hpp"
#include <unordered_map>
@@ -11,12 +11,12 @@ namespace yage
class TextureCache
{
private:
- std::unordered_map<std::string, GlTexture> texture_map_;
+ std::unordered_map<std::string, Texture> texture_map_;
public:
TextureCache();
~TextureCache();
- GlTexture getTexture(const std::string &texture_path);
+ Texture getTexture(const std::string &texture_path);
};
} // yage