swr/rast: Missed conversion to SIMD_T
authorTim Rowley <timothy.o.rowley@intel.com>
Wed, 30 Aug 2017 16:02:16 +0000 (11:02 -0500)
committerTim Rowley <timothy.o.rowley@intel.com>
Wed, 13 Sep 2017 15:09:41 +0000 (10:09 -0500)
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
src/gallium/drivers/swr/rasterizer/core/binner.cpp

index a6713e8c5d2801a712fbf5f0ce87d5fcab0d3f9c..e08e4896f3b1891d802cf475128721a444469fa2 100644 (file)
@@ -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;