Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-18 20:52:02 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-18 20:52:02 +0400
commit649dd6f64846ca959566389bc8ce58f87dcb499f (patch)
tree207721007086416b9b1c0d851a41d7bbe01f79be /intern/cycles/util/util_system.cpp
parente6c54c26aef3334078c27730c9ea7fa546ecb51e (diff)
Fix cycles crash on some processors. We actually need S-SSE3 support for this
new BVH traversal code, not just SSE3.
Diffstat (limited to 'intern/cycles/util/util_system.cpp')
-rw-r--r--intern/cycles/util/util_system.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_system.cpp b/intern/cycles/util/util_system.cpp
index c3ecc303a34..7ba749f4287 100644
--- a/intern/cycles/util/util_system.cpp
+++ b/intern/cycles/util/util_system.cpp
@@ -194,7 +194,7 @@ bool system_cpu_support_sse2()
bool system_cpu_support_sse3()
{
CPUCapabilities& caps = system_cpu_capabilities();
- return caps.sse && caps.sse2 && caps.sse3;
+ return caps.sse && caps.sse2 && caps.sse3 && caps.ssse3;
}
#else