wok-next diff mesa12/stuff/patches/mesa-12.0.patch @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents c0521c689857
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mesa12/stuff/patches/mesa-12.0.patch	Sat Nov 21 14:32:44 2020 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +--- a/src/gallium/drivers/swr/rasterizer/core/utils.h
     1.5 ++++ b/src/gallium/drivers/swr/rasterizer/core/utils.h
     1.6 +@@ -37,7 +37,7 @@
     1.7 + #define _MM_INSERT_EPI64 _mm_insert_epi64
     1.8 + #define _MM_EXTRACT_EPI64 _mm_extract_epi64
     1.9 + #else
    1.10 +-INLINE INT64 _MM_EXTRACT_EPI64(__m128i a, const int32_t ndx)
    1.11 ++INLINE int64_t _MM_EXTRACT_EPI64(__m128i a, const int32_t ndx)
    1.12 + {
    1.13 +     OSALIGNLINE(uint32_t) elems[4];
    1.14 +     _mm_store_si128((__m128i*)elems, a);
    1.15 +@@ -55,7 +55,7 @@
    1.16 +     }
    1.17 + }
    1.18 + 
    1.19 +-INLINE __m128i  _MM_INSERT_EPI64(__m128i a, INT64 b, const int32_t ndx)
    1.20 ++INLINE __m128i  _MM_INSERT_EPI64(__m128i a, int64_t b, const int32_t ndx)
    1.21 + {
    1.22 +     OSALIGNLINE(int64_t) elems[2];
    1.23 +     _mm_store_si128((__m128i*)elems, a);