Remove unnecessary glew includes.

Remove copyright from Mesh.cpp
Add default initializers for VertexAttribute
This commit is contained in:
REDxEYE
2025-04-13 17:14:34 +03:00
parent 9730454b90
commit 3a54a37b06
4 changed files with 3 additions and 10 deletions
+3 -3
View File
@@ -8,9 +8,9 @@
/// @brief Vertex attribute info
struct VertexAttribute {
uint32_t type;
bool normalized;
ubyte count;
uint32_t type = 0;
bool normalized = false;
ubyte count = 0;
[[nodiscard]] uint32_t size() const {