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, 4 insertions, 0 deletions
diff --git a/gfx/models/texture.h b/gfx/models/texture.h
index 09538b3..de532a5 100644
--- a/gfx/models/texture.h
+++ b/gfx/models/texture.h
@@ -19,7 +19,11 @@ public:
void bind(GLenum unit = GL_TEXTURE0) const;
static void save(const glTexture &, const glm::ivec2 & size, const char * path);
+ static void saveDepth(const glTexture &, const glm::ivec2 & size, const char * path);
private:
+ static void save(const glTexture &, GLenum, const glm::ivec2 & size, unsigned short channels, const char * path,
+ short tgaFormat);
+
glTexture m_texture;
};