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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-11-03 00:59:33 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2014-11-03 01:01:09 +0300
commitc14d34322b7b92a6817a284457c2ac6ad2194454 (patch)
tree693c401e238f226384dcf23a057815a2e48f18ce /intern/cycles/device
parentb7174c9320c5e3446d8237059841d982279e32e9 (diff)
Fix typo breaking compilation with SSE2.
Spotted by sybrenstuvel (Sybren Stüvel), thanks!
Diffstat (limited to 'intern/cycles/device')
-rw-r--r--intern/cycles/device/device_cpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/device_cpu.cpp b/intern/cycles/device/device_cpu.cpp
index 242cc65683f..e5242e7ee47 100644
--- a/intern/cycles/device/device_cpu.cpp
+++ b/intern/cycles/device/device_cpu.cpp
@@ -266,7 +266,7 @@ public:
else
#endif
#ifdef WITH_CYCLES_OPTIMIZED_KERNEL_SSE2
- if(system_cpu_support_sse2()) {
+ if(system_cpu_support_sse2())
convert_to_half_float_kernel = kernel_cpu_sse2_convert_to_half_float;
else
#endif