summaryrefslogtreecommitdiff
path: root/community/blender/no-sse2.patch
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-07-05 17:44:26 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2021-07-05 17:44:26 +0200
commite80f4a12a5e313bbc484bc3958c90214749495ec (patch)
tree6c648b2c84f3c9f5de1cb8ce12df5008f31ac554 /community/blender/no-sse2.patch
parent6889c282b79670062e758667a8272e68154b9676 (diff)
downloadpackages-e80f4a12a5e313bbc484bc3958c90214749495ec.tar.xz
community/blender: redone sse2 for i686
Diffstat (limited to 'community/blender/no-sse2.patch')
-rw-r--r--community/blender/no-sse2.patch9
1 files changed, 4 insertions, 5 deletions
diff --git a/community/blender/no-sse2.patch b/community/blender/no-sse2.patch
index 082a566c..88620e02 100644
--- a/community/blender/no-sse2.patch
+++ b/community/blender/no-sse2.patch
@@ -1,13 +1,12 @@
diff -rauN blender-vanilla/intern/cycles/bvh/bvh_embree.cpp blender-no-sse2-patch/intern/cycles/bvh/bvh_embree.cpp
---- blender-vanilla/intern/cycles/bvh/bvh_embree.cpp 2021-04-30 11:51:03.234550251 +0200
-+++ blender-no-sse2-patch/intern/cycles/bvh/bvh_embree.cpp 2021-04-30 11:52:15.691582206 +0200
-@@ -306,8 +306,10 @@
+--- blender-vanilla/intern/cycles/bvh/bvh_embree.cpp 2021-07-05 17:31:59.689914965 +0200
++++ blender-no-sse2-patch/intern/cycles/bvh/bvh_embree.cpp 2021-07-05 17:33:10.596795518 +0200
+@@ -304,7 +304,9 @@
rtc_device(NULL),
build_quality(RTC_BUILD_QUALITY_REFIT)
{
+#if defined(__x86_64__) || defined(_M_X64)
- _MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON);
- _MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
+ SIMD_SET_FLUSH_TO_ZERO;
+#endif
}