From 1afd7681a259b526e921d03ad4d11ff4985e7ac9 Mon Sep 17 00:00:00 2001 From: Zhigang Gong Date: Thu, 27 Jun 2013 19:38:25 +0800 Subject: [PATCH] CL: remove the deprecated function clSetCommandQueueProperty. According to the Open CL spec: The clSetCommandQueueProperty API is no longer supported in OpenCL 1.1. so we remove the corresponding function here. Signed-off-by: Zhigang Gong --- src/cl_api.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/cl_api.c b/src/cl_api.c index bb09c07..9467a48 100644 --- a/src/cl_api.c +++ b/src/cl_api.c @@ -372,19 +372,6 @@ error: return err; } -cl_int -clSetCommandQueueProperty(cl_command_queue command_queue, - cl_command_queue_properties properties, - cl_bool enable, - cl_command_queue_properties * old_properties) -{ - cl_int err = CL_SUCCESS; - CHECK_QUEUE (command_queue); - NOT_IMPLEMENTED; -error: - return err; -} - cl_mem clCreateBuffer(cl_context context, cl_mem_flags flags, -- 2.7.4