mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-25 13:51:58 +00:00
Merge branch 'Laupetin:main' into fix/T6-clipmap-asset
This commit is contained in:
@ -3814,7 +3814,8 @@ namespace T6
|
||||
uint16_t dynEntId;
|
||||
};
|
||||
|
||||
union gcc_align(8) __m128
|
||||
// Usually __m128, but that is not portable
|
||||
union gcc_align(8) custom_m128
|
||||
{
|
||||
float m128_f32[4];
|
||||
uint64_t m128_u64[2];
|
||||
@ -3827,19 +3828,12 @@ namespace T6
|
||||
unsigned int m128_u32[4];
|
||||
};
|
||||
|
||||
struct vector3
|
||||
{
|
||||
__m128 x;
|
||||
__m128 y;
|
||||
__m128 z;
|
||||
};
|
||||
|
||||
struct vector4
|
||||
{
|
||||
__m128 x;
|
||||
__m128 y;
|
||||
__m128 z;
|
||||
__m128 w;
|
||||
custom_m128 x;
|
||||
custom_m128 y;
|
||||
custom_m128 z;
|
||||
custom_m128 w;
|
||||
};
|
||||
|
||||
struct type_align(16) SSkinInstance
|
||||
|
2
thirdparty/catch2
vendored
2
thirdparty/catch2
vendored
Submodule thirdparty/catch2 updated: 914aeecfe2...76f70b1403
2
thirdparty/eigen
vendored
2
thirdparty/eigen
vendored
Submodule thirdparty/eigen updated: 5fc6fc9881...6579e36eb4
2
thirdparty/json
vendored
2
thirdparty/json
vendored
Submodule thirdparty/json updated: 8215dbafbd...11a835df85
2
thirdparty/libtomcrypt
vendored
2
thirdparty/libtomcrypt
vendored
Submodule thirdparty/libtomcrypt updated: d032686639...a6b9aff7aa
2
thirdparty/libtommath
vendored
2
thirdparty/libtommath
vendored
Submodule thirdparty/libtommath updated: 5938524c60...e823b0c34c
Reference in New Issue
Block a user