ufbx: Update to 0.21.3
This commit is contained in:
Vendored
+1
-1
@@ -1115,7 +1115,7 @@ Patches:
|
||||
## ufbx
|
||||
|
||||
- Upstream: https://github.com/ufbx/ufbx
|
||||
- Version: 0.21.2 (6ecd6177af59c82ec363356ac36c3a4245b85321, 2025)
|
||||
- Version: 0.21.3 (83bc7cf44f76bc8622de63b809a42b5d557cd733, 2026)
|
||||
- License: MIT
|
||||
|
||||
Files extracted from upstream source:
|
||||
|
||||
Vendored
+2
-2
@@ -874,7 +874,7 @@ enum { UFBX_MAXIMUM_ALIGNMENT = sizeof(void*) > 8 ? sizeof(void*) : 8 };
|
||||
|
||||
// -- Version
|
||||
|
||||
#define UFBX_SOURCE_VERSION ufbx_pack_version(0, 21, 2)
|
||||
#define UFBX_SOURCE_VERSION ufbx_pack_version(0, 21, 3)
|
||||
ufbx_abi_data_def const uint32_t ufbx_source_version = UFBX_SOURCE_VERSION;
|
||||
|
||||
ufbx_static_assert(source_header_version, UFBX_SOURCE_VERSION/1000u == UFBX_HEADER_VERSION/1000u);
|
||||
@@ -27075,7 +27075,7 @@ ufbxi_nodiscard static ufbxi_noinline int ufbxi_bake_postprocess_quat(ufbxi_bake
|
||||
ufbx_quat ref = src.data[0].value;
|
||||
for (size_t i = 1; i < src.count; i++) {
|
||||
ufbx_quat v = src.data[i].value;
|
||||
if (v.x != ref.x || v.y != ref.y || v.z != ref.z || v.y != ref.w) {
|
||||
if (v.x != ref.x || v.y != ref.y || v.z != ref.z || v.w != ref.w) {
|
||||
constant = false;
|
||||
break;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -267,7 +267,7 @@ struct ufbx_converter { };
|
||||
// `ufbx_source_version` contains the version of the corresponding source file.
|
||||
// HINT: The version can be compared numerically to the result of `ufbx_pack_version()`,
|
||||
// for example `#if UFBX_VERSION >= ufbx_pack_version(0, 12, 0)`.
|
||||
#define UFBX_HEADER_VERSION ufbx_pack_version(0, 21, 2)
|
||||
#define UFBX_HEADER_VERSION ufbx_pack_version(0, 21, 3)
|
||||
#define UFBX_VERSION UFBX_HEADER_VERSION
|
||||
|
||||
// -- Basic types
|
||||
|
||||
Reference in New Issue
Block a user