summaryrefslogtreecommitdiff
path: root/gfx/models/tga.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/models/tga.h')
-rw-r--r--gfx/models/tga.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/gfx/models/tga.h b/gfx/models/tga.h
new file mode 100644
index 0000000..1f400ef
--- /dev/null
+++ b/gfx/models/tga.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include <cstdint>
+#include <glm/vec2.hpp>
+
+struct TGAHead {
+ uint8_t idLength {}, colorMapType {}, format {};
+ uint16_t __attribute__((packed)) colorMapFirst {}, colorMapLength {};
+ uint8_t colorMapEntrySize {};
+ glm::vec<2, uint16_t> origin {}, size {};
+ uint8_t pixelDepth {};
+ uint8_t descriptor {};
+};
+static_assert(sizeof(TGAHead) == 18);