This commit is contained in:
Christophe 2024-01-18 14:43:58 +01:00
parent 71022f54f2
commit 4043c26c24
2 changed files with 10 additions and 1 deletions

View file

@ -18,7 +18,7 @@ namespace detail
__m128i const set2 = _mm_andnot_si128(set0, _mm_set1_epi32(-1));
__m128i const and2 = _mm_and_si128(set0, set2);
__m128i const sft2 = _mm_srai_epi32(and2, Shift);
__m128i const sft2 = _mm_srai_epi32(and2, static_cast<int>(Shift));
__m128i const or0 = _mm_or_si128(sft1, sft2);

View file

@ -53,6 +53,11 @@ static int test_vec3_aligned()
{
int Error = 0;
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wpadded"
#endif
struct Struct1
{
glm::vec4 A;
@ -60,6 +65,10 @@ static int test_vec3_aligned()
glm::vec3 C;
};
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic pop
#endif
std::size_t const Size1 = sizeof(Struct1);
Error += Size1 == 48 ? 0 : 1;