diff options
Diffstat (limited to 'libopencl/opencl_runtime_api.cc')
| -rw-r--r-- | libopencl/opencl_runtime_api.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libopencl/opencl_runtime_api.cc b/libopencl/opencl_runtime_api.cc index 9909d2a..213b4b4 100644 --- a/libopencl/opencl_runtime_api.cc +++ b/libopencl/opencl_runtime_api.cc @@ -1415,3 +1415,16 @@ clEnqueueMapBuffer(cl_command_queue command_queue, assert( mem->is_on_host() ); return mem->host_ptr(); } + + +extern CL_API_ENTRY cl_int CL_API_CALL +clSetCommandQueueProperty( cl_command_queue command_queue, + cl_command_queue_properties properties, + cl_bool enable, + cl_command_queue_properties *old_properties + ) CL_API_SUFFIX__VERSION_1_0 +{ + // TODO: do something here + return CL_SUCCESS; +} + |
