Commit f8877ea3 authored by Octavian Voicu's avatar Octavian Voicu Committed by Alexandre Julliard

opencl: Remove reference to clSetCommandQueueProperty and print fixme, saying…

opencl: Remove reference to clSetCommandQueueProperty and print fixme, saying function is deprecated.
parent 2f053965
......@@ -276,10 +276,8 @@ cl_int WINAPI wine_clGetCommandQueueInfo(cl_command_queue command_queue, cl_comm
cl_int WINAPI wine_clSetCommandQueueProperty(cl_command_queue command_queue, cl_command_queue_properties properties, cl_bool enable,
cl_command_queue_properties * old_properties)
{
cl_int ret;
TRACE("%p, 0x%lx, %d, %p\n", command_queue, (long unsigned int)properties, enable, old_properties);
ret = clSetCommandQueueProperty(command_queue, properties, enable, old_properties);
return ret;
FIXME("(%p, 0x%lx, %d, %p): deprecated\n", command_queue, (long unsigned int)properties, enable, old_properties);
return CL_INVALID_QUEUE_PROPERTIES;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment