summaryrefslogtreecommitdiff
path: root/archive/src/resources/loaders.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-26 21:55:23 +1100
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-26 21:55:23 +1100
commit43bee361397315c7105b7214316325b185135331 (patch)
treeb339f728b4cd6f37b37912b62c8d0af75dc9551d /archive/src/resources/loaders.h
parent24573518c3320673eb87d6d659522d77e05cb75c (diff)
move archive into /src
Diffstat (limited to 'archive/src/resources/loaders.h')
-rw-r--r--archive/src/resources/loaders.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/archive/src/resources/loaders.h b/archive/src/resources/loaders.h
deleted file mode 100644
index ea1f9a2..0000000
--- a/archive/src/resources/loaders.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-#include "defines.h"
-#include "render_types.h"
-#include "str.h"
-
-// --- Public API
-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);