From e5b3f7a823f5e73cb17456d4b9bdd59760fb18ed Mon Sep 17 00:00:00 2001 From: omniscient <17525998+omnisci3nce@users.noreply.github.com> Date: Sun, 28 Jul 2024 16:13:16 +1000 Subject: wrap light types in an enum --- src/resources/gltf.c | 3 --- src/resources/loaders.h | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/resources/gltf.c b/src/resources/gltf.c index 8b949ce..642fc59 100644 --- a/src/resources/gltf.c +++ b/src/resources/gltf.c @@ -38,9 +38,6 @@ KITC_DECL_TYPED_ARRAY(Vec4) KITC_DECL_TYPED_ARRAY(face) // KITC_DECL_TYPED_ARRAY(joint) -bool model_load_gltf_str(const char *file_string, const char *filepath, Str8 relative_path, - Model *out_model, bool invert_textures_y); - size_t GLTF_LoadMaterials(cgltf_data *data, Str8 relative_path, Material_darray *out_materials); ModelHandle ModelLoad_gltf(const char *path, bool invert_texture_y) { diff --git a/src/resources/loaders.h b/src/resources/loaders.h index 677e2a7..220a391 100644 --- a/src/resources/loaders.h +++ b/src/resources/loaders.h @@ -8,6 +8,10 @@ PUB ModelHandle ModelLoad_obj(const char *path, bool invert_texture_y); PUB ModelHandle ModelLoad_gltf(const char *path, bool invert_texture_y); +typedef struct GLTF_LoadStats { + u32 mesh_count, material_count, vertex_count, index_count, animation_count, joint_count; +} GLTF_LoadStats; + // --- Internal bool model_load_gltf_str(const char *file_string, const char *filepath, Str8 relative_path, Model *out_model, bool invert_textures_y); -- cgit v1.2.3-70-g09d2