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@pandora.be>2012-01-26 23:07:01 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-01-26 23:07:01 +0400
commit803286dde8dd9594a6a8c9e1ed154863934da295 (patch)
treef04c73fd252d79ad73340b59d89c30c40bc58f20 /intern/cycles/device/device_multi.cpp
parent4514a4455be89bc0a789d78355321abe6cfd5112 (diff)
Cycles: render passes for CUDA cards with compute model >= 2.x.
Diffstat (limited to 'intern/cycles/device/device_multi.cpp')
-rw-r--r--intern/cycles/device/device_multi.cpp46
1 files changed, 4 insertions, 42 deletions
diff --git a/intern/cycles/device/device_multi.cpp b/intern/cycles/device/device_multi.cpp
index 41d0e268526..375719133b8 100644
--- a/intern/cycles/device/device_multi.cpp
+++ b/intern/cycles/device/device_multi.cpp
@@ -76,16 +76,6 @@ public:
delete sub.device;
}
- bool support_full_kernel()
- {
- foreach(SubDevice& sub, devices) {
- if(!sub.device->support_full_kernel())
- return false;
- }
-
- return true;
- }
-
const string& error_message()
{
foreach(SubDevice& sub, devices) {
@@ -99,38 +89,6 @@ public:
return error_msg;
}
- string description()
- {
- /* create map to find duplicate descriptions */
- map<string, int> dupli_map;
- map<string, int>::iterator dt;
-
- foreach(SubDevice& sub, devices) {
- string key = sub.device->description();
-
- if(dupli_map.find(key) == dupli_map.end())
- dupli_map[key] = 1;
- else
- dupli_map[key]++;
- }
-
- /* generate string */
- stringstream desc;
- bool first = true;
-
- for(dt = dupli_map.begin(); dt != dupli_map.end(); dt++) {
- if(!first) desc << ", ";
- first = false;
-
- if(dt->second > 1)
- desc << dt->second << "x " << dt->first;
- else
- desc << dt->first;
- }
-
- return desc.str();
- }
-
bool load_kernels(bool experimental)
{
foreach(SubDevice& sub, devices)
@@ -344,6 +302,8 @@ static void device_multi_add(vector<DeviceInfo>& devices, DeviceType type, bool
map<string, int>::iterator dt;
int num_added = 0, num_display = 0;
+ info.advanced_shading = true;
+
foreach(DeviceInfo& subinfo, devices) {
if(subinfo.type == type) {
if(subinfo.display_device) {
@@ -363,6 +323,8 @@ static void device_multi_add(vector<DeviceInfo>& devices, DeviceType type, bool
info.multi_devices.push_back(subinfo);
if(subinfo.display_device)
info.display_device = true;
+ if(!subinfo.advanced_shading)
+ info.advanced_shading = false;
num_added++;
}
}