MESH BUFFER

This commit is contained in:
Jorijn van der Graaf 2025-04-27 01:57:25 +02:00
commit 523852da08
11 changed files with 93 additions and 51 deletions

View file

@ -23,9 +23,10 @@ namespace Crafter {
std::uint8_t a;
};
export struct Vertex_xf32_yf32_zf32 {
export struct __attribute__((packed)) Vertex_xf32_yf32_zf32_wf32 {
float x;
float y;
float z;
float w;
};
}