From: Seth Long Date: Thu, 17 Oct 2024 06:07:27 +0000 (-0700) Subject: Trivial comment update to test hook X-Git-Url: https://isoptera.lcsc.edu/gitweb/?a=commitdiff_plain;h=644f62a52ec6efe2c63cd35aca785204d71557a6;p=example_engine%2F.git Trivial comment update to test hook --- diff --git a/game.h b/game.h index 720f25a..4d2d66c 100644 --- 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 &verticies, std::vector &indices, const char* filename, float scale = 1.0f, bool swap_yz = false, glm::vec2 texture_scale = glm::vec2(1, 1));