This commit is contained in:
Jorijn van der Graaf 2025-05-03 06:51:33 +02:00
commit 98b775e33e
21 changed files with 361 additions and 5541 deletions

View file

@ -16,7 +16,7 @@ namespace Crafter {
MousePoint mouseDelta;
};
export struct Pixel {
export struct Pixel_RU8_GU8_BU8_AU8 {
std::uint8_t r;
std::uint8_t g;
std::uint8_t b;
@ -29,4 +29,15 @@ namespace Crafter {
float z;
float w;
};
export struct Vertex_xf32_yf32_zf32_wf32_uf32_vf32 {
float x;
float y;
float z;
float w;
float u;
float v;
float pad[2];
};
}