diff options
author | Tim Rowley <timothy.o.rowley@intel.com> | 2017-08-30 11:02:16 -0500 |
---|---|---|
committer | Tim Rowley <timothy.o.rowley@intel.com> | 2017-09-13 10:09:41 -0500 |
commit | 1ccf9ad280415536056095314b470156e29b057e (patch) | |
tree | 98d2df746ccc13b6ddd20d1f720aabddf3e2f138 | |
parent | c0ce5c4422a8a49124196da00577196ab22ab89c (diff) |
swr/rast: Missed conversion to SIMD_T
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/core/binner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |