diff options
| author | Gabriel Pariat <gabriel@pariatech.com> | 2024-01-27 14:06:58 -0500 |
|---|---|---|
| committer | Gabriel Pariat <gabriel@pariatech.com> | 2024-01-27 14:06:58 -0500 |
| commit | ab68e4c6c40c0f661a7ca45c0ebeedaccf9d8319 (patch) | |
| tree | e9b776203ae84beebb45a7649d247986d5d73c21 | |
| parent | 4956f9dad39a083ca46ae1f6904086702854ea81 (diff) | |
change ordering
| -rw-r--r-- | vendor/cgltf/cgltf.odin | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vendor/cgltf/cgltf.odin b/vendor/cgltf/cgltf.odin index 5e7f16b50..595fe4640 100644 --- a/vendor/cgltf/cgltf.odin +++ b/vendor/cgltf/cgltf.odin @@ -1,12 +1,11 @@ package cgltf -import "core:c" - when ODIN_OS == .Windows { foreign import lib "lib/cgltf.lib" } else when ODIN_OS == .Linux { foreign import lib "lib/cgltf.a" } else when ODIN_OS == .Darwin { foreign import lib "lib/darwin/cgltf.a" } else { foreign import lib "system:cgltf" } +import "core:c" file_type :: enum c.int { invalid, |