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-08-11 19:03:54 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-08-11 19:03:54 +0300
commitd22153425a516938fbe904ee3bb5a8a163a6367a (patch)
treec14efe8b0d1446a775a9d6c87a89c1dfadd634ab /intern/cycles/device/device_opencl.cpp
parenta790e172d0281e64517ff44d80f1c0139c3ab665 (diff)
Cycles: Enable some extra debug prints for OpenCL kernel loading
Diffstat (limited to 'intern/cycles/device/device_opencl.cpp')
-rw-r--r--intern/cycles/device/device_opencl.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/device/device_opencl.cpp b/intern/cycles/device/device_opencl.cpp
index fee9a8a803d..94e53b71479 100644
--- a/intern/cycles/device/device_opencl.cpp
+++ b/intern/cycles/device/device_opencl.cpp
@@ -995,6 +995,7 @@ public:
VLOG(2) << "Loaded kernel from " << clbin << ".";
}
else {
+ VLOG(2) << "Kernel file " << clbin << " either doesn't exist or failed to be loaded by driver.";
string init_kernel_source = "#include \"kernels/opencl/kernel.cl\" // " + kernel_md5 + "\n";
/* If does not exist or loading binary failed, compile kernel. */