From: Tim Rowley Date: Wed, 30 Aug 2017 16:02:16 +0000 (-0500) Subject: swr/rast: Missed conversion to SIMD_T X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ccf9ad280415536056095314b470156e29b057e;p=mesa.git swr/rast: Missed conversion to SIMD_T Reviewed-by: Bruce Cherniak --- diff --git a/src/gallium/drivers/swr/rasterizer/core/binner.cpp b/src/gallium/drivers/swr/rasterizer/core/binner.cpp index a6713e8c5d2..e08e4896f3b 100644 --- a/src/gallium/drivers/swr/rasterizer/core/binner.cpp +++ b/src/gallium/drivers/swr/rasterizer/core/binner.cpp @@ -1195,7 +1195,7 @@ void BinPostSetupPointsImpl( } OSALIGNSIMD16(float) aPointSize[SIMD_WIDTH]; - _simd16_store_ps(reinterpret_cast(aPointSize), vPointSize); + SIMD_T::store_ps(reinterpret_cast(aPointSize), vPointSize); uint32_t *pPrimID = (uint32_t *)&primID;