summaryrefslogtreecommitdiff
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorTim Rowley <timothy.o.rowley@intel.com>2017-05-12 12:57:46 -0500
committerTim Rowley <timothy.o.rowley@intel.com>2017-05-30 17:21:12 -0500
commite3c93d8ddf2bd8b427396e1320fcd65fb44467e8 (patch)
treed637e5222a90e899083fcf17b80361666adff0e4 /src/gallium/drivers
parentfd14c407341b8546993e5bb0c894db8dfb87349c (diff)
swr/rast: SIMD16 FE - fix PA_STATE_OP::Reset()
Fixes instanced GS. Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/swr/rasterizer/core/pa.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/core/pa.h b/src/gallium/drivers/swr/rasterizer/core/pa.h
index 7c390564a41..020399d39b9 100644
--- a/src/gallium/drivers/swr/rasterizer/core/pa.h
+++ b/src/gallium/drivers/swr/rasterizer/core/pa.h
@@ -325,6 +325,9 @@ struct PA_STATE_OPT : public PA_STATE
#endif
this->pfnPaFunc = this->pfnPaFuncReset;
+#if ENABLE_AVX512_SIMD16
+ this->pfnPaFunc_simd16 = this->pfnPaFuncReset_simd16;
+#endif
this->numPrimsComplete = 0;
this->numSimdPrims = 0;
this->cur = 0;