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_opencl.cpp')
-rw-r--r--intern/cycles/device/device_opencl.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/intern/cycles/device/device_opencl.cpp b/intern/cycles/device/device_opencl.cpp
index 35810266218..2a596a288bf 100644
--- a/intern/cycles/device/device_opencl.cpp
+++ b/intern/cycles/device/device_opencl.cpp
@@ -548,7 +548,9 @@ public:
return NULL;
/* caller is going to release it when done with it, so retain it */
- assert(clRetainProgram(program) == CL_SUCCESS);
+ cl_int ciErr = clRetainProgram(program);
+ assert(ciErr == CL_SUCCESS);
+ (void)ciErr;
return program;
}
@@ -567,7 +569,9 @@ public:
/* increment reference count in OpenCL.
* The caller is going to release the object when done with it. */
- assert(clRetainContext(context) == CL_SUCCESS);
+ cl_int ciErr = clRetainContext(context);
+ assert(ciErr == CL_SUCCESS);
+ (void)ciErr;
}
/* see store_something comment */
@@ -600,7 +604,9 @@ public:
/* Increment reference count in OpenCL.
* The caller is going to release the object when done with it.
*/
- assert(clRetainProgram(program) == CL_SUCCESS);
+ cl_int ciErr = clRetainProgram(program);
+ assert(ciErr == CL_SUCCESS);
+ (void)ciErr;
}
/* Discard all cached contexts and programs. */