diff options
Diffstat (limited to 'gfx/models/texture.h')
-rw-r--r-- | gfx/models/texture.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gfx/models/texture.h b/gfx/models/texture.h index 2bbf1f4..09538b3 100644 --- a/gfx/models/texture.h +++ b/gfx/models/texture.h @@ -3,6 +3,7 @@ #include <cache.h>
#include <filesystem>
#include <glArrays.h>
+#include <glm/fwd.hpp>
// IWYU pragma: no_forward_declare Cache
class Image;
@@ -17,6 +18,8 @@ public: void bind(GLenum unit = GL_TEXTURE0) const;
+ static void save(const glTexture &, const glm::ivec2 & size, const char * path);
+
private:
glTexture m_texture;
};
|