summaryrefslogtreecommitdiff
path: root/gfx/models/texture.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/models/texture.h')
-rw-r--r--gfx/models/texture.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/gfx/models/texture.h b/gfx/models/texture.h
index 5d40b39..689d378 100644
--- a/gfx/models/texture.h
+++ b/gfx/models/texture.h
@@ -1,12 +1,10 @@
#pragma once
#include "config/types.h"
-#include <cache.h>
#include <filesystem>
#include <glArrays.h>
#include <glm/fwd.hpp>
-// IWYU pragma: no_forward_declare Cache
class Image;
struct TextureOptions {
@@ -32,8 +30,6 @@ public:
explicit Texture(GLsizei width, GLsizei height, TextureOptions = {});
explicit Texture(GLsizei width, GLsizei height, const void * data, TextureOptions = {});
- static Cache<Texture, std::filesystem::path> cachedTexture;
-
virtual void bind(GLenum unit = GL_TEXTURE0) const;
void save(const char * path) const;