aboutsummaryrefslogtreecommitdiffstats
path: root/include/yage/texture_cache.hpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-04-02 09:19:32 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-04-02 09:19:32 +0100
commitaa67c8bb56cb750ac83ecbd361439f5ecb5e12d9 (patch)
treef1517a86654cf5457fa0b3aa6cfaea4bfa4eef36 /include/yage/texture_cache.hpp
parent21a147c3c1c2fad2819fe76becab320c51eb131f (diff)
downloadYAGE-aa67c8bb56cb750ac83ecbd361439f5ecb5e12d9.tar.gz
YAGE-aa67c8bb56cb750ac83ecbd361439f5ecb5e12d9.zip
Renamed includes
Diffstat (limited to 'include/yage/texture_cache.hpp')
-rw-r--r--include/yage/texture_cache.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/yage/texture_cache.hpp b/include/yage/texture_cache.hpp
deleted file mode 100644
index 44dba2f8..00000000
--- a/include/yage/texture_cache.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef TEXTURE_CACHE_HPP
-#define TEXTURE_CACHE_HPP
-
-#include "gl_texture.hpp"
-
-#include <unordered_map>
-
-class TextureCache
-{
-private:
- std::unordered_map<std::string, GlTexture> texture_map_;
-public:
- TextureCache();
- ~TextureCache();
-
- GlTexture getTexture(const std::string &texture_path);
-};
-
-
-#endif