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:
authorCampbell Barton <ideasman42@gmail.com>2017-11-04 13:45:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-11-04 13:45:52 +0300
commitd4fe083b356d7967ce6d9716cd0e6ba3039d1655 (patch)
tree49eb05d3589f180c1056691efa5dd7c67b28dca8 /intern/cycles/device/device.h
parent10024603ee904a4201ae35b87643012543274d0f (diff)
parent01a3c9560938c98793a2d2a0b61e574ed5c27e4a (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'intern/cycles/device/device.h')
-rw-r--r--intern/cycles/device/device.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/intern/cycles/device/device.h b/intern/cycles/device/device.h
index c79f086fc2d..17d9abb4a33 100644
--- a/intern/cycles/device/device.h
+++ b/intern/cycles/device/device.h
@@ -52,13 +52,14 @@ public:
string description;
string id; /* used for user preferences, should stay fixed with changing hardware config */
int num;
- bool display_device;
- bool advanced_shading;
- bool has_bindless_textures; /* flag for GPU and Multi device */
- bool has_volume_decoupled;
- bool has_qbvh;
- bool has_osl;
- bool use_split_kernel; /* Denotes if the device is going to run cycles using split-kernel */
+ bool display_device; /* GPU is used as a display device. */
+ bool advanced_shading; /* Supports full shading system. */
+ bool has_fermi_limits; /* Fixed number of textures limit. */
+ bool has_half_images; /* Support half-float textures. */
+ bool has_volume_decoupled; /* Decoupled volume shading. */
+ bool has_qbvh; /* Supports both BVH2 and BVH4 raytracing. */
+ bool has_osl; /* Support Open Shading Language. */
+ bool use_split_kernel; /* Use split or mega kernel. */
int cpu_threads;
vector<DeviceInfo> multi_devices;
@@ -70,7 +71,8 @@ public:
cpu_threads = 0;
display_device = false;
advanced_shading = true;
- has_bindless_textures = false;
+ has_fermi_limits = false;
+ has_half_images = false;
has_volume_decoupled = false;
has_qbvh = false;
has_osl = false;