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:
Diffstat (limited to 'intern/cycles/device/device.h')
-rw-r--r--intern/cycles/device/device.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/device/device.h b/intern/cycles/device/device.h
index b8fea4c4c69..af2567498d9 100644
--- a/intern/cycles/device/device.h
+++ b/intern/cycles/device/device.h
@@ -51,6 +51,7 @@ public:
string id;
int num;
bool display_device;
+ bool advanced_shading;
vector<DeviceInfo> multi_devices;
DeviceInfo()
@@ -59,6 +60,7 @@ public:
id = "CPU";
num = 0;
display_device = false;
+ advanced_shading = true;
}
};
@@ -101,10 +103,8 @@ protected:
public:
virtual ~Device() {}
- virtual bool support_full_kernel() = 0;
-
/* info */
- virtual string description() = 0;
+ DeviceInfo info;
virtual const string& error_message() { return error_msg; }
/* regular memory */