summaryrefslogtreecommitdiff
path: root/gfx/models
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2022-12-04 17:00:54 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2022-12-04 17:02:44 +0000
commit867daf817bba83ab22c5e04409c4afb1075dd158 (patch)
treef9c97a2875dd36e13cf1ee2d6a4ce99d1a585c55 /gfx/models
parentDon't actually need to define an empty fragment shader (diff)
downloadilt-867daf817bba83ab22c5e04409c4afb1075dd158.tar.bz2
ilt-867daf817bba83ab22c5e04409c4afb1075dd158.tar.xz
ilt-867daf817bba83ab22c5e04409c4afb1075dd158.zip
Support saving a depth texture
Diffstat (limited to 'gfx/models')
-rw-r--r--gfx/models/texture.cpp23
-rw-r--r--gfx/models/texture.h4
2 files changed, 23 insertions, 4 deletions
diff --git a/gfx/models/texture.cpp b/gfx/models/texture.cpp
index 313b3fa..645920f 100644
--- a/gfx/models/texture.cpp
+++ b/gfx/models/texture.cpp
@@ -41,15 +41,30 @@ Texture::bind(GLenum unit) const
}
void
-Texture::save(const glTexture & texture, const glm::ivec2 & size, const char * path)
+Texture::save(const glTexture & texture, GLenum format, const glm::ivec2 & size, unsigned short channels,
+ const char * path, short tgaFormat)
{
- std::vector<unsigned char> buffer(static_cast<size_t>(size.x * size.y * 3));
- glGetTextureImage(texture, 0, GL_BGR, GL_UNSIGNED_BYTE, static_cast<GLsizei>(buffer.size()), buffer.data());
+ using PixelData = std::vector<unsigned char>;
+ PixelData buffer(static_cast<size_t>(size.x * size.y * channels));
+ glGetTextureImage(texture, 0, format, GL_UNSIGNED_BYTE, static_cast<GLsizei>(buffer.size()), buffer.data());
auto out = open(path, O_WRONLY | O_CREAT, 0660);
- short TGAhead[] = {0, 2, 0, 0, 0, 0, static_cast<short>(size.x), static_cast<short>(size.y), 24};
+ const short TGAhead[] = {0, tgaFormat, 0, 0, 0, 0, static_cast<short>(size.x), static_cast<short>(size.y),
+ static_cast<short>(8 * channels)};
std::ignore = write(out, &TGAhead, sizeof(TGAhead));
std::ignore = write(out, buffer.data(), buffer.size());
std::ignore = ftruncate(out, static_cast<off_t>(buffer.size() + sizeof(TGAhead)));
close(out);
}
+
+void
+Texture::save(const glTexture & texture, const glm::ivec2 & size, const char * path)
+{
+ save(texture, GL_BGR, size, 3, path, 2);
+}
+
+void
+Texture::saveDepth(const glTexture & texture, const glm::ivec2 & size, const char * path)
+{
+ save(texture, GL_DEPTH_COMPONENT, size, 1, path, 3);
+}
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;
};