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-11-03 22:21:19 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2017-11-03 22:32:29 +0300
commit6ec599c68214413475cbea403ef869ed7c8113f9 (patch)
tree5052e130555b6850e17ad0b0944d22b7331871f6 /intern/cycles/device/device_cpu.cpp
parent6664ee209e96fe4a4ae8018bcf10f798a3b53751 (diff)
Fix T53247: mixed CPU + GPU render wrong texture limits.
Diffstat (limited to 'intern/cycles/device/device_cpu.cpp')
-rw-r--r--intern/cycles/device/device_cpu.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/device/device_cpu.cpp b/intern/cycles/device/device_cpu.cpp
index 32ab18fe164..0c0e6af7eb4 100644
--- a/intern/cycles/device/device_cpu.cpp
+++ b/intern/cycles/device/device_cpu.cpp
@@ -1047,6 +1047,7 @@ void device_cpu_info(vector<DeviceInfo>& devices)
info.has_qbvh = system_cpu_support_sse2();
info.has_volume_decoupled = true;
info.has_osl = true;
+ info.has_half_images = true;
devices.insert(devices.begin(), info);
}