It suddenly works again?

This commit is contained in:
Dynamitos
2023-12-14 09:04:23 +01:00
parent 88004ce70f
commit 462999858f
10 changed files with 45 additions and 43 deletions
+7 -5
View File
@@ -2,6 +2,7 @@ import AABB;
struct MeshletDescription
{
AABB boundingBox;
uint32_t vertexCount;
uint32_t primitiveCount;
uint32_t vertexOffset;
@@ -10,11 +11,12 @@ struct MeshletDescription
struct MeshData
{
uint32_t meshletOffset = 0;
uint16_t numMeshlets = 0;
uint16_t indicesOffset = 0;
uint32_t firstIndex = 0;
uint32_t numIndices = 0;
uint32_t numMeshlets;
uint32_t meshletOffset;
uint32_t firstIndex;
uint32_t numIndices;
uint32_t indicesOffset;
uint32_t pad0[3];
};
static const uint MAX_VERTICES = 64;