summaryrefslogtreecommitdiffstats
path: root/resources/CL/cl.h
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2009-09-23 01:32:54 +0200
committerMichael Bien <[email protected]>2009-09-23 01:32:54 +0200
commit0ac4a12fb74de16f41ee9ad46e917b45523bbac4 (patch)
treed9072115c60805c0f50df2ae4cd90227e6c10cea /resources/CL/cl.h
parent8ba956a7df1b98ed2957a932debfce4c6d4cb848 (diff)
splitted binding in core (CL) and CL-GL interop. (CLGLI)
began with custom impl. for functions with c -> java callbacks added an utility which uncomments function parameter names in headers
Diffstat (limited to 'resources/CL/cl.h')
-rw-r--r--resources/CL/cl.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/resources/CL/cl.h b/resources/CL/cl.h
index d353f9ad..4a2c6712 100644
--- a/resources/CL/cl.h
+++ b/resources/CL/cl.h
@@ -437,15 +437,15 @@ extern CL_API_ENTRY cl_context CL_API_CALL
clCreateContext(cl_context_properties * /* properties */,
cl_uint /* num_devices */,
const cl_device_id * /* devices */,
-// void (*pfn_notify)(const char *, const void *, size_t, void *) /* pfn_notify */,
-// void * /* user_data */,
+ void (*pfn_notify)(const char *, const void *, size_t, void *) /* pfn_notify */,
+ void * /* user_data */,
cl_int * /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;
extern CL_API_ENTRY cl_context CL_API_CALL
clCreateContextFromType(cl_context_properties * /* properties */,
cl_device_type /* device_type */,
-// void (*pfn_notify)(const char *, const void *, size_t, void *) /* pfn_notify */,
-// void * /* user_data */,
+ void (*pfn_notify)(const char *, const void *, size_t, void *) /* pfn_notify */,
+ void * /* user_data */,
cl_int * /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;
extern CL_API_ENTRY cl_int CL_API_CALL
@@ -594,7 +594,7 @@ clBuildProgram(cl_program /* program */,
cl_uint /* num_devices */,
const cl_device_id * /* device_list */,
const char * /* options */,
-// void (*pfn_notify)(cl_program /* program */, void * /* user_data */),
+ void (*pfn_notify)(cl_program /* program */, void * /* user_data */),
void * /* user_data */) CL_API_SUFFIX__VERSION_1_0;
extern CL_API_ENTRY cl_int CL_API_CALL
@@ -834,8 +834,8 @@ clEnqueueTask(cl_command_queue /* command_queue */,
extern CL_API_ENTRY cl_int CL_API_CALL
clEnqueueNativeKernel(cl_command_queue /* command_queue */,
-// void (*user_func)(void *),
-// void * /* args */,
+ void (*user_func)(void *),
+ void * /* args */,
size_t /* cb_args */,
cl_uint /* num_mem_objects */,
const cl_mem * /* mem_list */,