]> isoptera.lcsc.edu Git - example_engine/.git/commitdiff
Trivial comment update to test hook
authorSeth Long <sslong@lcsc.edu>
Thu, 17 Oct 2024 06:07:27 +0000 (23:07 -0700)
committerSeth Long <sslong@lcsc.edu>
Thu, 17 Oct 2024 06:07:27 +0000 (23:07 -0700)
game.h

diff --git a/game.h b/game.h
index 720f25a9a257f7bd5cdb63f790692cb4c3afce3f..4d2d66c491ca7f9cd241993137b4acc3633befaa 100644 (file)
--- a/game.h
+++ b/game.h
@@ -26,7 +26,7 @@ struct vertex {
        bool operator==(const vertex& other) const {
                return pos == other.pos && tex_coord == other.tex_coord;
        }
-}; // __attribute__((packed)); // TODO:  Alignment
+}; // __attribute__((packed)); // This doesn't seem to matter
 
 unsigned int load_texture(const char* filename);
 int load_model(std::vector<vertex> &verticies, std::vector<uint32_t> &indices, const char* filename, float scale = 1.0f, bool swap_yz = false, glm::vec2 texture_scale = glm::vec2(1, 1));