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
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-01-06 18:04:25 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-06 18:05:33 +0300
commite2846c999a43566a9068716abb1a2a732281e204 (patch)
treeafb117ac27071a2eafa8079f6480bbacbec3fc58 /intern
parent60c0c47dba97ef2bdbc4bdb6e936da0297a0c1f9 (diff)
Cycles: Fix stupid mistake which was assining kernel function in a loop
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/device/device_cpu.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/intern/cycles/device/device_cpu.cpp b/intern/cycles/device/device_cpu.cpp
index 832f4d1c1fd..1b07ab6eca4 100644
--- a/intern/cycles/device/device_cpu.cpp
+++ b/intern/cycles/device/device_cpu.cpp
@@ -273,7 +273,6 @@ public:
#endif
#ifdef WITH_CYCLES_OPTIMIZED_KERNEL_AVX
if(system_cpu_support_avx())
- for(int y = task.y; y < task.y + task.h; y++)
convert_to_half_float_kernel = kernel_cpu_avx_convert_to_half_float;
else
#endif