From 1ccf9ad280415536056095314b470156e29b057e Mon Sep 17 00:00:00 2001 From: Tim Rowley Date: Wed, 30 Aug 2017 11:02:16 -0500 Subject: [PATCH] swr/rast: Missed conversion to SIMD_T Reviewed-by: Bruce Cherniak --- src/gallium/drivers/swr/rasterizer/core/binner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2