Module: Mesa Branch: master Commit: 1ccf9ad280415536056095314b470156e29b057e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1ccf9ad280415536056095314b470156e29b057e
Author: Tim Rowley <[email protected]> Date: Wed Aug 30 11:02:16 2017 -0500 swr/rast: Missed conversion to SIMD_T Reviewed-by: Bruce Cherniak <[email protected]> --- 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 a6713e8c5d..e08e4896f3 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<float *>(aPointSize), vPointSize); + SIMD_T::store_ps(reinterpret_cast<float *>(aPointSize), vPointSize); uint32_t *pPrimID = (uint32_t *)&primID; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
