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@gmail.com>2017-09-20 20:36:24 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2017-09-20 20:38:08 +0300
commit18a353dd242225a9a7a6e101b9c128f94d03d770 (patch)
treeb93d1d53a63cb7ab6b5028b0d3f1afef26a92622 /intern/cycles/util
parent14223357e593c05c27883a82cfdb39097d0fd9a7 (diff)
Fix T52368: Cycles OSL trace() failing on Windows 32 bit.
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_optimization.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/cycles/util/util_optimization.h b/intern/cycles/util/util_optimization.h
index 0382c0811dd..3c5785c4807 100644
--- a/intern/cycles/util/util_optimization.h
+++ b/intern/cycles/util/util_optimization.h
@@ -25,6 +25,9 @@
#if defined(i386) || defined(_M_IX86)
+/* We require minimum SSE2 support on x86, so auto enable. */
+# define __KERNEL_SSE2__
+
# ifdef WITH_KERNEL_SSE2
# define WITH_CYCLES_OPTIMIZED_KERNEL_SSE2
# endif