Remove unused pragma pack

This commit is contained in:
REDxEYE 2025-03-30 01:54:31 +03:00
parent 90605c6d5f
commit 40a515227a

View File

@ -12,7 +12,6 @@
/// @brief Chunk mesh vertex format /// @brief Chunk mesh vertex format
#pragma pack(push, 2)
struct ChunkVertex { struct ChunkVertex {
glm::vec3 position; glm::vec3 position;
glm::vec2 uv; glm::vec2 uv;
@ -25,7 +24,6 @@ struct ChunkVertex {
{0} {0}
}; };
}; };
#pragma pack(pop)
/// @brief Chunk mesh vertex attributes /// @brief Chunk mesh vertex attributes