diff options
| author | Taylor <2374670+taylormck@users.noreply.github.com> | 2025-07-30 00:17:40 +0900 |
|---|---|---|
| committer | Taylor <2374670+taylormck@users.noreply.github.com> | 2025-07-30 00:17:40 +0900 |
| commit | 6c2b72f70128e63dea0b009f298e0b34bd9fd865 (patch) | |
| tree | 0a9d1d1480fa34d9a5f955d8b894d187f17bca50 | |
| parent | 1b15c9928b5960c515b68fea3eafe7580902642b (diff) | |
fix: align the enum values
| -rw-r--r-- | vendor/cgltf/cgltf.odin | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vendor/cgltf/cgltf.odin b/vendor/cgltf/cgltf.odin index 92b498d37..bab58d851 100644 --- a/vendor/cgltf/cgltf.odin +++ b/vendor/cgltf/cgltf.odin @@ -263,19 +263,19 @@ image :: struct { } filter_type :: enum c.int { - undefined = 0, - nearest = 9728, - linear = 9729, + undefined = 0, + nearest = 9728, + linear = 9729, nearest_mipmap_nearest = 9984, - linear_mipmap_nearest = 9985, - nearest_mipmap_linear = 9986, - linear_mipmap_linear = 9987, + linear_mipmap_nearest = 9985, + nearest_mipmap_linear = 9986, + linear_mipmap_linear = 9987, } wrap_mode :: enum c.int { - clamp_to_edge = 33071, + clamp_to_edge = 33071, mirrored_repeat = 33648, - repeat = 10497, + repeat = 10497, } sampler :: struct { |