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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-08-29 17:09:59 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-08-29 17:09:59 +0300
commit31278eb4bcc73f95b5032d65ababf32812074c5c (patch)
tree5422141293391de231224143fb75dd0144fb78e3 /intern/cycles/device
parente81c352746483acb50fbeddbba4249cdcb51d952 (diff)
parentb2c707747da9f930a05499e98874c35d9aee7193 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'intern/cycles/device')
-rw-r--r--intern/cycles/device/device_cpu.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/cycles/device/device_cpu.cpp b/intern/cycles/device/device_cpu.cpp
index e92bbbfa6e6..5b3761f8353 100644
--- a/intern/cycles/device/device_cpu.cpp
+++ b/intern/cycles/device/device_cpu.cpp
@@ -1031,6 +1031,9 @@ void device_cpu_info(vector<DeviceInfo>& devices)
if(system_cpu_support_sse2()) {
info.bvh_layout_mask |= BVH_LAYOUT_BVH4;
}
+ if (system_cpu_support_avx2()) {
+ info.bvh_layout_mask |= BVH_LAYOUT_BVH8;
+ }
info.has_volume_decoupled = true;
info.has_osl = true;
info.has_half_images = true;