From b6c48fa53b9ff9c60a50c4839d184e0c8da4daea Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Sun, 19 Dec 2021 14:55:35 -0500 Subject: [PATCH] add note about using u16 instead of u32 --- src/asset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asset.h b/src/asset.h index 7584e6c..7a0e92c 100644 --- a/src/asset.h +++ b/src/asset.h @@ -36,7 +36,7 @@ struct mesh glm::vec3* normals; glm::vec2* uvs; glm::vec3* colors; - u16* indices; + u16* indices; // NOTE: u16 to match tinygltf library output glm::mat4* xform; };