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>2015-06-05 15:13:59 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-06-05 15:17:30 +0300
commit28f798f86ef965b22743bcefb94e8b9f9162c10a (patch)
tree21008f26b94af975c244915517c9519279dc2211 /intern/cycles/device/device.cpp
parentd5bca524d55d929a9e725a51b373de4804e1fe2e (diff)
Cycles: Initial support for OpenCL capabilities reports
For now it's just generic information, still need to expose memory, workgorup sizes and so on.
Diffstat (limited to 'intern/cycles/device/device.cpp')
-rw-r--r--intern/cycles/device/device.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/intern/cycles/device/device.cpp b/intern/cycles/device/device.cpp
index 0a4802c2c90..5cad8e1b49c 100644
--- a/intern/cycles/device/device.cpp
+++ b/intern/cycles/device/device.cpp
@@ -327,13 +327,10 @@ string Device::device_capabilities()
#endif
#ifdef WITH_OPENCL
- /* TODO(sergey): Needs proper usable implementation. */
- /*
if(device_opencl_init()) {
capabilities += "\nOpenCL device capabilities:\n";
capabilities += device_opencl_capabilities();
}
- */
#endif
return capabilities;