diff options
author | Tim Rowley <[email protected]> | 2016-08-16 12:38:36 -0600 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2016-08-17 17:08:55 -0500 |
commit | 550503e776aaca0207184a6454de6aedc8c88aac (patch) | |
tree | 70235f45c8d27b267a2fcc013b2b1dbc1a25c848 /src/gallium/drivers/swr | |
parent | d70f96fd674cfb5a1aeedce179c2cc02c38a9fad (diff) |
swr: [rasterizer core] portability - remove use of INT64
Signed-off-by: Tim Rowley <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/core/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/core/utils.h b/src/gallium/drivers/swr/rasterizer/core/utils.h index e66cdc34bae..0a9430af630 100644 --- a/src/gallium/drivers/swr/rasterizer/core/utils.h +++ b/src/gallium/drivers/swr/rasterizer/core/utils.h @@ -38,7 +38,7 @@ #define _MM_INSERT_EPI64 _mm_insert_epi64 #define _MM_EXTRACT_EPI64 _mm_extract_epi64 #else -INLINE INT64 _MM_EXTRACT_EPI64(__m128i a, const int32_t ndx) +INLINE int64_t _MM_EXTRACT_EPI64(__m128i a, const int32_t ndx) { OSALIGNLINE(uint32_t) elems[4]; _mm_store_si128((__m128i*)elems, a); @@ -56,7 +56,7 @@ INLINE INT64 _MM_EXTRACT_EPI64(__m128i a, const int32_t ndx) } } -INLINE __m128i _MM_INSERT_EPI64(__m128i a, INT64 b, const int32_t ndx) +INLINE __m128i _MM_INSERT_EPI64(__m128i a, int64_t b, const int32_t ndx) { OSALIGNLINE(int64_t) elems[2]; _mm_store_si128((__m128i*)elems, a); |