JOCL v2.6.0-rc-20250722
JOCL, OpenCL® API Binding for Java™ (public API).
com.jogamp.opencl.llb.CL11 Interface Reference
Inheritance diagram for com.jogamp.opencl.llb.CL11:
Collaboration diagram for com.jogamp.opencl.llb.CL11:

Public Member Functions

int clGetPlatformIDs (int num_entries, PointerBuffer platforms, IntBuffer num_platforms)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetPlatformIDs}(cl_uint num_entries, cl_platform_id * platforms, cl_uint * num_platforms)
More...
 
int clGetPlatformInfo (long platform, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetPlatformInfo}(cl_platform_id platform, cl_platform_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clGetDeviceIDs (long platform, long device_type, int num_entries, PointerBuffer devices, IntBuffer num_devices)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetDeviceIDs}(cl_platform_id platform, cl_device_type device_type, cl_uint num_entries, cl_device_id * devices, cl_uint * num_devices)
More...
 
int clGetDeviceInfo (long device, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetDeviceInfo}(cl_device_id device, cl_device_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clRetainContext (long context)
 Entry point (through function pointer) to C language function:
cl_int {@native clRetainContext}(cl_context context)

More...
 
int clGetContextInfo (long context, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetContextInfo}(cl_context context, cl_context_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateCommandQueue (long context, long device, long properties, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_command_queue {@native clCreateCommandQueue}(cl_context context, cl_device_id device, cl_command_queue_properties properties, cl_int * errcode_ret)
More...
 
long clCreateCommandQueue (long context, long device, long properties, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_command_queue {@native clCreateCommandQueue}(cl_context context, cl_device_id device, cl_command_queue_properties properties, cl_int * errcode_ret)

More...
 
int clRetainCommandQueue (long command_queue)
 Entry point (through function pointer) to C language function:
cl_int {@native clRetainCommandQueue}(cl_command_queue command_queue)

More...
 
int clReleaseCommandQueue (long command_queue)
 Entry point (through function pointer) to C language function:
cl_int {@native clReleaseCommandQueue}(cl_command_queue command_queue)

More...
 
int clGetCommandQueueInfo (long command_queue, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetCommandQueueInfo}(cl_command_queue command_queue, cl_command_queue_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateBuffer (long context, long flags, long size, Buffer host_ptr, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateBuffer}(cl_context context, cl_mem_flags flags, size_t size, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateBuffer (long context, long flags, long size, Buffer host_ptr, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateBuffer}(cl_context context, cl_mem_flags flags, size_t size, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateSubBuffer (long buffer, long flags, int buffer_create_type, Buffer buffer_create_info, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateSubBuffer}(cl_mem buffer, cl_mem_flags flags, cl_buffer_create_type buffer_create_type, const void * buffer_create_info, cl_int * errcode_ret)
More...
 
long clCreateSubBuffer (long buffer, long flags, int buffer_create_type, Buffer buffer_create_info, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateSubBuffer}(cl_mem buffer, cl_mem_flags flags, cl_buffer_create_type buffer_create_type, const void * buffer_create_info, cl_int * errcode_ret)
More...
 
long clCreateImage2D (long context, long flags, CLImageFormatImpl image_format, long image_width, long image_height, long image_row_pitch, Buffer host_ptr, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateImage2D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_row_pitch, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateImage2D (long context, long flags, CLImageFormatImpl image_format, long image_width, long image_height, long image_row_pitch, Buffer host_ptr, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateImage2D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_row_pitch, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateImage3D (long context, long flags, CLImageFormatImpl image_format, long image_width, long image_height, long image_depth, long image_row_pitch, long image_slice_pitch, Buffer host_ptr, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateImage3D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_depth, size_t image_row_pitch, size_t image_slice_pitch, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateImage3D (long context, long flags, CLImageFormatImpl image_format, long image_width, long image_height, long image_depth, long image_row_pitch, long image_slice_pitch, Buffer host_ptr, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateImage3D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_depth, size_t image_row_pitch, size_t image_slice_pitch, void * host_ptr, cl_int * errcode_ret)
More...
 
int clRetainMemObject (long memobj)
 Entry point (through function pointer) to C language function:
cl_int {@native clRetainMemObject}(cl_mem memobj)

More...
 
int clReleaseMemObject (long memobj)
 Entry point (through function pointer) to C language function:
cl_int {@native clReleaseMemObject}(cl_mem memobj)

More...
 
int clGetSupportedImageFormats (long context, long flags, int image_type, int num_entries, CLImageFormatImpl image_formats, IntBuffer num_image_formats)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetSupportedImageFormats}(cl_context context, cl_mem_flags flags, cl_mem_object_type image_type, cl_uint num_entries, cl_image_format * image_formats, cl_uint * num_image_formats)
More...
 
int clGetSupportedImageFormats (long context, long flags, int image_type, int num_entries, CLImageFormatImpl image_formats, int[] num_image_formats, int num_image_formats_offset)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetSupportedImageFormats}(cl_context context, cl_mem_flags flags, cl_mem_object_type image_type, cl_uint num_entries, cl_image_format * image_formats, cl_uint * num_image_formats)

More...
 
int clGetMemObjectInfo (long memobj, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetMemObjectInfo}(cl_mem memobj, cl_mem_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clGetImageInfo (long image, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetImageInfo}(cl_mem image, cl_image_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateSampler (long context, int normalized_coords, int addressing_mode, int filter_mode, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_sampler {@native clCreateSampler}(cl_context context, cl_bool normalized_coords, cl_addressing_mode addressing_mode, cl_filter_mode filter_mode, cl_int * errcode_ret)
More...
 
long clCreateSampler (long context, int normalized_coords, int addressing_mode, int filter_mode, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_sampler {@native clCreateSampler}(cl_context context, cl_bool normalized_coords, cl_addressing_mode addressing_mode, cl_filter_mode filter_mode, cl_int * errcode_ret)

More...
 
int clRetainSampler (long sampler)
 Entry point (through function pointer) to C language function:
cl_int {@native clRetainSampler}(cl_sampler sampler)

More...
 
int clReleaseSampler (long sampler)
 Entry point (through function pointer) to C language function:
cl_int {@native clReleaseSampler}(cl_sampler sampler)

More...
 
int clGetSamplerInfo (long sampler, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetSamplerInfo}(cl_sampler sampler, cl_sampler_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateProgramWithSource (long context, int count, String[] strings, PointerBuffer lengths, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_program {@native clCreateProgramWithSource}(cl_context context, cl_uint count, const char * * strings, const size_t * lengths, cl_int * errcode_ret)
More...
 
long clCreateProgramWithBinary (long context, int num_devices, PointerBuffer device_list, PointerBuffer lengths, PointerBuffer binaries, IntBuffer binary_status, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_program {@native clCreateProgramWithBinary}(cl_context context, cl_uint num_devices, const cl_device_id * device_list, const size_t * lengths, unsigned const char * * binaries, cl_int * binary_status, cl_int * errcode_ret)
More...
 
int clRetainProgram (long program)
 Entry point (through function pointer) to C language function:
cl_int {@native clRetainProgram}(cl_program program)

More...
 
int clReleaseProgram (long program)
 Entry point (through function pointer) to C language function:
cl_int {@native clReleaseProgram}(cl_program program)

More...
 
int clUnloadCompiler ()
 Entry point (through function pointer) to C language function:
cl_int {@native clUnloadCompiler}()

More...
 
int clGetProgramInfo (long program, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetProgramInfo}(cl_program program, cl_program_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clGetProgramBuildInfo (long program, long device, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetProgramBuildInfo}(cl_program program, cl_device_id device, cl_program_build_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateKernel (long program, String kernel_name, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_kernel {@native clCreateKernel}(cl_program program, const char * kernel_name, cl_int * errcode_ret)
More...
 
long clCreateKernel (long program, String kernel_name, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_kernel {@native clCreateKernel}(cl_program program, const char * kernel_name, cl_int * errcode_ret)

More...
 
int clCreateKernelsInProgram (long program, int num_kernels, PointerBuffer kernels, IntBuffer num_kernels_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clCreateKernelsInProgram}(cl_program program, cl_uint num_kernels, cl_kernel * kernels, cl_uint * num_kernels_ret)
More...
 
int clRetainKernel (long kernel)
 Entry point (through function pointer) to C language function:
cl_int {@native clRetainKernel}(cl_kernel kernel)

More...
 
int clReleaseKernel (long kernel)
 Entry point (through function pointer) to C language function:
cl_int {@native clReleaseKernel}(cl_kernel kernel)

More...
 
int clSetKernelArg (long kernel, int arg_index, long arg_size, Buffer arg_value)
 Entry point (through function pointer) to C language function:
cl_int {@native clSetKernelArg}(cl_kernel kernel, cl_uint arg_index, size_t arg_size, const void * arg_value)
More...
 
int clGetKernelInfo (long kernel, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetKernelInfo}(cl_kernel kernel, cl_kernel_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clGetKernelWorkGroupInfo (long kernel, long device, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetKernelWorkGroupInfo}(cl_kernel kernel, cl_device_id device, cl_kernel_work_group_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clWaitForEvents (int num_events, PointerBuffer event_list)
 Entry point (through function pointer) to C language function:
cl_int {@native clWaitForEvents}(cl_uint num_events, const cl_event * event_list)
More...
 
int clGetEventInfo (long event, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetEventInfo}(cl_event event, cl_event_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateUserEvent (long context, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_event {@native clCreateUserEvent}(cl_context context, cl_int * errcode_ret)
More...
 
long clCreateUserEvent (long context, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_event {@native clCreateUserEvent}(cl_context context, cl_int * errcode_ret)

More...
 
int clRetainEvent (long event)
 Entry point (through function pointer) to C language function:
cl_int {@native clRetainEvent}(cl_event event)

More...
 
int clReleaseEvent (long event)
 Entry point (through function pointer) to C language function:
cl_int {@native clReleaseEvent}(cl_event event)

More...
 
int clSetUserEventStatus (long event, int execution_status)
 Entry point (through function pointer) to C language function:
cl_int {@native clSetUserEventStatus}(cl_event event, cl_int execution_status)

More...
 
int clGetEventProfilingInfo (long event, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetEventProfilingInfo}(cl_event event, cl_profiling_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clFlush (long command_queue)
 Entry point (through function pointer) to C language function:
cl_int {@native clFlush}(cl_command_queue command_queue)

More...
 
int clFinish (long command_queue)
 Entry point (through function pointer) to C language function:
cl_int {@native clFinish}(cl_command_queue command_queue)

More...
 
int clEnqueueReadBuffer (long command_queue, long buffer, int blocking_read, long offset, long cb, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueReadBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_read, size_t offset, size_t cb, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueReadBufferRect (long command_queue, long buffer, int blocking_read, PointerBuffer buffer_origin, PointerBuffer host_origin, PointerBuffer region, long buffer_row_pitch, long buffer_slice_pitch, long host_row_pitch, long host_slice_pitch, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueReadBufferRect}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_read, const size_t * buffer_origin, const size_t * host_origin, const size_t * region, size_t buffer_row_pitch, size_t buffer_slice_pitch, size_t host_row_pitch, size_t host_slice_pitch, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueWriteBuffer (long command_queue, long buffer, int blocking_write, long offset, long cb, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueWriteBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_write, size_t offset, size_t cb, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueWriteBufferRect (long command_queue, long buffer, int blocking_write, PointerBuffer buffer_origin, PointerBuffer host_origin, PointerBuffer region, long buffer_row_pitch, long buffer_slice_pitch, long host_row_pitch, long host_slice_pitch, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueWriteBufferRect}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_write, const size_t * buffer_origin, const size_t * host_origin, const size_t * region, size_t buffer_row_pitch, size_t buffer_slice_pitch, size_t host_row_pitch, size_t host_slice_pitch, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyBuffer (long command_queue, long src_buffer, long dst_buffer, long src_offset, long dst_offset, long cb, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyBuffer}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_buffer, size_t src_offset, size_t dst_offset, size_t cb, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyBufferRect (long command_queue, long src_buffer, long dst_buffer, PointerBuffer src_origin, PointerBuffer dst_origin, PointerBuffer region, long src_row_pitch, long src_slice_pitch, long dst_row_pitch, long dst_slice_pitch, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyBufferRect}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_buffer, const size_t * src_origin, const size_t * dst_origin, const size_t * region, size_t src_row_pitch, size_t src_slice_pitch, size_t dst_row_pitch, size_t dst_slice_pitch, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueReadImage (long command_queue, long image, int blocking_read, PointerBuffer arg3, PointerBuffer arg4, long row_pitch, long slice_pitch, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueReadImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_read, const size_t * , const size_t * , size_t row_pitch, size_t slice_pitch, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueWriteImage (long command_queue, long image, int blocking_write, PointerBuffer arg3, PointerBuffer arg4, long input_row_pitch, long input_slice_pitch, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueWriteImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_write, const size_t * , const size_t * , size_t input_row_pitch, size_t input_slice_pitch, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyImage (long command_queue, long src_image, long dst_image, PointerBuffer arg3, PointerBuffer arg4, PointerBuffer arg5, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyImage}(cl_command_queue command_queue, cl_mem src_image, cl_mem dst_image, const size_t * , const size_t * , const size_t * , cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyImageToBuffer (long command_queue, long src_image, long dst_buffer, PointerBuffer arg3, PointerBuffer arg4, long dst_offset, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyImageToBuffer}(cl_command_queue command_queue, cl_mem src_image, cl_mem dst_buffer, const size_t * , const size_t * , size_t dst_offset, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyBufferToImage (long command_queue, long src_buffer, long dst_image, long src_offset, PointerBuffer arg4, PointerBuffer arg5, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyBufferToImage}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_image, size_t src_offset, const size_t * , const size_t * , cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
ByteBuffer clEnqueueMapBuffer (long command_queue, long buffer, int blocking_map, long map_flags, long offset, long cb, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
void * {@native clEnqueueMapBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_map, cl_map_flags map_flags, size_t offset, size_t cb, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event, cl_int * errcode_ret)
More...
 
ByteBuffer clEnqueueMapImage (long command_queue, long image, int blocking_map, long map_flags, PointerBuffer arg4, PointerBuffer arg5, PointerBuffer image_row_pitch, PointerBuffer image_slice_pitch, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
void * {@native clEnqueueMapImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_map, cl_map_flags map_flags, const size_t * , const size_t * , size_t * image_row_pitch, size_t * image_slice_pitch, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event, cl_int * errcode_ret)
More...
 
int clEnqueueUnmapMemObject (long command_queue, long memobj, Buffer mapped_ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueUnmapMemObject}(cl_command_queue command_queue, cl_mem memobj, void * mapped_ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueNDRangeKernel (long command_queue, long kernel, int work_dim, PointerBuffer global_work_offset, PointerBuffer global_work_size, PointerBuffer local_work_size, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueNDRangeKernel}(cl_command_queue command_queue, cl_kernel kernel, cl_uint work_dim, const size_t * global_work_offset, const size_t * global_work_size, const size_t * local_work_size, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueTask (long command_queue, long kernel, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueTask}(cl_command_queue command_queue, cl_kernel kernel, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueMarker (long command_queue, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueMarker}(cl_command_queue command_queue, cl_event * event)
More...
 
int clEnqueueWaitForEvents (long command_queue, int num_events, PointerBuffer event_list)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueWaitForEvents}(cl_command_queue command_queue, cl_uint num_events, const cl_event * event_list)
More...
 
int clEnqueueBarrier (long command_queue)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueBarrier}(cl_command_queue command_queue)

More...
 
int clIcdGetPlatformIDsKHR (int arg0, PointerBuffer arg1, IntBuffer arg2)
 Entry point (through function pointer) to C language function:
cl_int {@native clIcdGetPlatformIDsKHR}(cl_uint, cl_platform_id * , cl_uint * )
More...
 
int clReleaseDeviceEXT (long arg0)
 Entry point (through function pointer) to C language function:
cl_int {@native clReleaseDeviceEXT}(cl_device_id)

More...
 
int clRetainDeviceEXT (long arg0)
 Entry point (through function pointer) to C language function:
cl_int {@native clRetainDeviceEXT}(cl_device_id)

More...
 
int clCreateSubDevicesEXT (long arg0, LongBuffer arg1, int arg2, PointerBuffer arg3, IntBuffer arg4)
 Entry point (through function pointer) to C language function:
cl_int {@native clCreateSubDevicesEXT}(cl_device_id, const cl_device_partition_property_ext * , cl_uint, cl_device_id * , cl_uint * )
More...
 
int clCreateSubDevicesEXT (long arg0, long[] arg1, int arg1_offset, int arg2, PointerBuffer arg3, int[] arg4, int arg4_offset)
 Entry point (through function pointer) to C language function:
cl_int {@native clCreateSubDevicesEXT}(cl_device_id, const cl_device_partition_property_ext * , cl_uint, cl_device_id * , cl_uint * )
More...
 
long clCreateFromGLBuffer (long context, long flags, int bufobj, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLBuffer}(cl_context context, cl_mem_flags flags, cl_GLuint bufobj, int * errcode_ret)
More...
 
long clCreateFromGLBuffer (long context, long flags, int bufobj, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLBuffer}(cl_context context, cl_mem_flags flags, cl_GLuint bufobj, int * errcode_ret)

More...
 
long clCreateFromGLTexture2D (long context, long flags, int target, int miplevel, int texture, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLTexture2D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)
More...
 
long clCreateFromGLTexture2D (long context, long flags, int target, int miplevel, int texture, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLTexture2D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)

More...
 
long clCreateFromGLTexture3D (long context, long flags, int target, int miplevel, int texture, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLTexture3D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)
More...
 
long clCreateFromGLTexture3D (long context, long flags, int target, int miplevel, int texture, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLTexture3D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)

More...
 
long clCreateFromGLRenderbuffer (long context, long flags, int renderbuffer, IntBuffer errcode_ret)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLRenderbuffer}(cl_context context, cl_mem_flags flags, cl_GLuint renderbuffer, cl_int * errcode_ret)
More...
 
long clCreateFromGLRenderbuffer (long context, long flags, int renderbuffer, int[] errcode_ret, int errcode_ret_offset)
 Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLRenderbuffer}(cl_context context, cl_mem_flags flags, cl_GLuint renderbuffer, cl_int * errcode_ret)

More...
 
int clGetGLObjectInfo (long memobj, IntBuffer gl_object_type, IntBuffer gl_object_name)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetGLObjectInfo}(cl_mem memobj, cl_gl_object_type * gl_object_type, cl_GLuint * gl_object_name)
More...
 
int clGetGLObjectInfo (long memobj, int[] gl_object_type, int gl_object_type_offset, int[] gl_object_name, int gl_object_name_offset)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetGLObjectInfo}(cl_mem memobj, cl_gl_object_type * gl_object_type, cl_GLuint * gl_object_name)

More...
 
int clGetGLTextureInfo (long memobj, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetGLTextureInfo}(cl_mem memobj, cl_gl_texture_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clEnqueueAcquireGLObjects (long command_queue, int num_objects, PointerBuffer mem_objects, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueAcquireGLObjects}(cl_command_queue command_queue, cl_uint num_objects, const cl_mem * mem_objects, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueReleaseGLObjects (long command_queue, int num_objects, PointerBuffer mem_objects, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueReleaseGLObjects}(cl_command_queue command_queue, cl_uint num_objects, const cl_mem * mem_objects, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clGetGLContextInfoKHR (PointerBuffer properties, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Entry point (through function pointer) to C language function:
cl_int {@native clGetGLContextInfoKHR}(const cl_context_properties * properties, cl_gl_context_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateEventFromGLsyncKHR (long arg0, long arg1, IntBuffer arg2)
 Entry point (through function pointer) to C language function:
cl_event {@native clCreateEventFromGLsyncKHR}(cl_context, cl_GLsync, cl_int * )
More...
 
long clCreateEventFromGLsyncKHR (long arg0, long arg1, int[] arg2, int arg2_offset)
 Entry point (through function pointer) to C language function:
cl_event {@native clCreateEventFromGLsyncKHR}(cl_context, cl_GLsync, cl_int * )

More...
 
- Public Member Functions inherited from com.jogamp.opencl.llb.CL
int clGetPlatformIDs (int num_entries, PointerBuffer platforms, IntBuffer num_platforms)
 Interface to C language function:
cl_int {@native clGetPlatformIDs}(cl_uint num_entries, cl_platform_id * platforms, cl_uint * num_platforms)
More...
 
int clGetPlatformInfo (long platform, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetPlatformInfo}(cl_platform_id platform, cl_platform_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clGetDeviceIDs (long platform, long device_type, int num_entries, PointerBuffer devices, IntBuffer num_devices)
 Interface to C language function:
cl_int {@native clGetDeviceIDs}(cl_platform_id platform, cl_device_type device_type, cl_uint num_entries, cl_device_id * devices, cl_uint * num_devices)
More...
 
int clGetDeviceInfo (long device, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetDeviceInfo}(cl_device_id device, cl_device_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clRetainContext (long context)
 Interface to C language function:
cl_int {@native clRetainContext}(cl_context context)

More...
 
int clReleaseContext (long context)
 Interface to C language function:
cl_int {@native clReleaseContext}(cl_context context)

More...
 
int clGetContextInfo (long context, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetContextInfo}(cl_context context, cl_context_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateCommandQueue (long context, long device, long properties, IntBuffer errcode_ret)
 Interface to C language function:
cl_command_queue {@native clCreateCommandQueue}(cl_context context, cl_device_id device, cl_command_queue_properties properties, cl_int * errcode_ret)
More...
 
long clCreateCommandQueue (long context, long device, long properties, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_command_queue {@native clCreateCommandQueue}(cl_context context, cl_device_id device, cl_command_queue_properties properties, cl_int * errcode_ret)

More...
 
int clRetainCommandQueue (long command_queue)
 Interface to C language function:
cl_int {@native clRetainCommandQueue}(cl_command_queue command_queue)

More...
 
int clReleaseCommandQueue (long command_queue)
 Interface to C language function:
cl_int {@native clReleaseCommandQueue}(cl_command_queue command_queue)

More...
 
int clGetCommandQueueInfo (long command_queue, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetCommandQueueInfo}(cl_command_queue command_queue, cl_command_queue_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateBuffer (long context, long flags, long size, Buffer host_ptr, IntBuffer errcode_ret)
 Interface to C language function:
cl_mem {@native clCreateBuffer}(cl_context context, cl_mem_flags flags, size_t size, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateBuffer (long context, long flags, long size, Buffer host_ptr, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_mem {@native clCreateBuffer}(cl_context context, cl_mem_flags flags, size_t size, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateSubBuffer (long buffer, long flags, int buffer_create_type, Buffer buffer_create_info, IntBuffer errcode_ret)
 Interface to C language function:
cl_mem {@native clCreateSubBuffer}(cl_mem buffer, cl_mem_flags flags, cl_buffer_create_type buffer_create_type, const void * buffer_create_info, cl_int * errcode_ret)
More...
 
long clCreateSubBuffer (long buffer, long flags, int buffer_create_type, Buffer buffer_create_info, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_mem {@native clCreateSubBuffer}(cl_mem buffer, cl_mem_flags flags, cl_buffer_create_type buffer_create_type, const void * buffer_create_info, cl_int * errcode_ret)
More...
 
long clCreateImage2D (long context, long flags, CLImageFormatImpl image_format, long image_width, long image_height, long image_row_pitch, Buffer host_ptr, IntBuffer errcode_ret)
 Interface to C language function:
cl_mem {@native clCreateImage2D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_row_pitch, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateImage2D (long context, long flags, CLImageFormatImpl image_format, long image_width, long image_height, long image_row_pitch, Buffer host_ptr, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_mem {@native clCreateImage2D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_row_pitch, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateImage3D (long context, long flags, CLImageFormatImpl image_format, long image_width, long image_height, long image_depth, long image_row_pitch, long image_slice_pitch, Buffer host_ptr, IntBuffer errcode_ret)
 Interface to C language function:
cl_mem {@native clCreateImage3D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_depth, size_t image_row_pitch, size_t image_slice_pitch, void * host_ptr, cl_int * errcode_ret)
More...
 
long clCreateImage3D (long context, long flags, CLImageFormatImpl image_format, long image_width, long image_height, long image_depth, long image_row_pitch, long image_slice_pitch, Buffer host_ptr, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_mem {@native clCreateImage3D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_depth, size_t image_row_pitch, size_t image_slice_pitch, void * host_ptr, cl_int * errcode_ret)
More...
 
int clRetainMemObject (long memobj)
 Interface to C language function:
cl_int {@native clRetainMemObject}(cl_mem memobj)

More...
 
int clReleaseMemObject (long memobj)
 Interface to C language function:
cl_int {@native clReleaseMemObject}(cl_mem memobj)

More...
 
int clGetSupportedImageFormats (long context, long flags, int image_type, int num_entries, CLImageFormatImpl image_formats, IntBuffer num_image_formats)
 Interface to C language function:
cl_int {@native clGetSupportedImageFormats}(cl_context context, cl_mem_flags flags, cl_mem_object_type image_type, cl_uint num_entries, cl_image_format * image_formats, cl_uint * num_image_formats)
More...
 
int clGetSupportedImageFormats (long context, long flags, int image_type, int num_entries, CLImageFormatImpl image_formats, int[] num_image_formats, int num_image_formats_offset)
 Interface to C language function:
cl_int {@native clGetSupportedImageFormats}(cl_context context, cl_mem_flags flags, cl_mem_object_type image_type, cl_uint num_entries, cl_image_format * image_formats, cl_uint * num_image_formats)

More...
 
int clGetMemObjectInfo (long memobj, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetMemObjectInfo}(cl_mem memobj, cl_mem_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clGetImageInfo (long image, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetImageInfo}(cl_mem image, cl_image_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateSampler (long context, int normalized_coords, int addressing_mode, int filter_mode, IntBuffer errcode_ret)
 Interface to C language function:
cl_sampler {@native clCreateSampler}(cl_context context, cl_bool normalized_coords, cl_addressing_mode addressing_mode, cl_filter_mode filter_mode, cl_int * errcode_ret)
More...
 
long clCreateSampler (long context, int normalized_coords, int addressing_mode, int filter_mode, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_sampler {@native clCreateSampler}(cl_context context, cl_bool normalized_coords, cl_addressing_mode addressing_mode, cl_filter_mode filter_mode, cl_int * errcode_ret)

More...
 
int clRetainSampler (long sampler)
 Interface to C language function:
cl_int {@native clRetainSampler}(cl_sampler sampler)

More...
 
int clReleaseSampler (long sampler)
 Interface to C language function:
cl_int {@native clReleaseSampler}(cl_sampler sampler)

More...
 
int clGetSamplerInfo (long sampler, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetSamplerInfo}(cl_sampler sampler, cl_sampler_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateProgramWithSource (long context, int count, String[] strings, PointerBuffer lengths, IntBuffer errcode_ret)
 Interface to C language function:
cl_program {@native clCreateProgramWithSource}(cl_context context, cl_uint count, const char * * strings, const size_t * lengths, cl_int * errcode_ret)
More...
 
long clCreateProgramWithBinary (long context, int num_devices, PointerBuffer device_list, PointerBuffer lengths, PointerBuffer binaries, IntBuffer binary_status, IntBuffer errcode_ret)
 Interface to C language function:
cl_program {@native clCreateProgramWithBinary}(cl_context context, cl_uint num_devices, const cl_device_id * device_list, const size_t * lengths, unsigned const char * * binaries, cl_int * binary_status, cl_int * errcode_ret)
More...
 
int clRetainProgram (long program)
 Interface to C language function:
cl_int {@native clRetainProgram}(cl_program program)

More...
 
int clReleaseProgram (long program)
 Interface to C language function:
cl_int {@native clReleaseProgram}(cl_program program)

More...
 
int clUnloadCompiler ()
 Interface to C language function:
cl_int {@native clUnloadCompiler}()

More...
 
int clGetProgramInfo (long program, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetProgramInfo}(cl_program program, cl_program_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clGetProgramBuildInfo (long program, long device, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetProgramBuildInfo}(cl_program program, cl_device_id device, cl_program_build_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateKernel (long program, String kernel_name, IntBuffer errcode_ret)
 Interface to C language function:
cl_kernel {@native clCreateKernel}(cl_program program, const char * kernel_name, cl_int * errcode_ret)
More...
 
long clCreateKernel (long program, String kernel_name, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_kernel {@native clCreateKernel}(cl_program program, const char * kernel_name, cl_int * errcode_ret)

More...
 
int clCreateKernelsInProgram (long program, int num_kernels, PointerBuffer kernels, IntBuffer num_kernels_ret)
 Interface to C language function:
cl_int {@native clCreateKernelsInProgram}(cl_program program, cl_uint num_kernels, cl_kernel * kernels, cl_uint * num_kernels_ret)
More...
 
int clRetainKernel (long kernel)
 Interface to C language function:
cl_int {@native clRetainKernel}(cl_kernel kernel)

More...
 
int clReleaseKernel (long kernel)
 Interface to C language function:
cl_int {@native clReleaseKernel}(cl_kernel kernel)

More...
 
int clSetKernelArg (long kernel, int arg_index, long arg_size, Buffer arg_value)
 Interface to C language function:
cl_int {@native clSetKernelArg}(cl_kernel kernel, cl_uint arg_index, size_t arg_size, const void * arg_value)
More...
 
int clGetKernelInfo (long kernel, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetKernelInfo}(cl_kernel kernel, cl_kernel_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clGetKernelWorkGroupInfo (long kernel, long device, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetKernelWorkGroupInfo}(cl_kernel kernel, cl_device_id device, cl_kernel_work_group_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clWaitForEvents (int num_events, PointerBuffer event_list)
 Interface to C language function:
cl_int {@native clWaitForEvents}(cl_uint num_events, const cl_event * event_list)
More...
 
int clGetEventInfo (long event, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetEventInfo}(cl_event event, cl_event_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateUserEvent (long context, IntBuffer errcode_ret)
 Interface to C language function:
cl_event {@native clCreateUserEvent}(cl_context context, cl_int * errcode_ret)
More...
 
long clCreateUserEvent (long context, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_event {@native clCreateUserEvent}(cl_context context, cl_int * errcode_ret)

More...
 
int clRetainEvent (long event)
 Interface to C language function:
cl_int {@native clRetainEvent}(cl_event event)

More...
 
int clReleaseEvent (long event)
 Interface to C language function:
cl_int {@native clReleaseEvent}(cl_event event)

More...
 
int clSetUserEventStatus (long event, int execution_status)
 Interface to C language function:
cl_int {@native clSetUserEventStatus}(cl_event event, cl_int execution_status)

More...
 
int clGetEventProfilingInfo (long event, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetEventProfilingInfo}(cl_event event, cl_profiling_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clFlush (long command_queue)
 Interface to C language function:
cl_int {@native clFlush}(cl_command_queue command_queue)

More...
 
int clFinish (long command_queue)
 Interface to C language function:
cl_int {@native clFinish}(cl_command_queue command_queue)

More...
 
int clEnqueueReadBuffer (long command_queue, long buffer, int blocking_read, long offset, long cb, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueReadBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_read, size_t offset, size_t cb, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueReadBufferRect (long command_queue, long buffer, int blocking_read, PointerBuffer buffer_origin, PointerBuffer host_origin, PointerBuffer region, long buffer_row_pitch, long buffer_slice_pitch, long host_row_pitch, long host_slice_pitch, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueReadBufferRect}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_read, const size_t * buffer_origin, const size_t * host_origin, const size_t * region, size_t buffer_row_pitch, size_t buffer_slice_pitch, size_t host_row_pitch, size_t host_slice_pitch, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueWriteBuffer (long command_queue, long buffer, int blocking_write, long offset, long cb, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueWriteBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_write, size_t offset, size_t cb, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueWriteBufferRect (long command_queue, long buffer, int blocking_write, PointerBuffer buffer_origin, PointerBuffer host_origin, PointerBuffer region, long buffer_row_pitch, long buffer_slice_pitch, long host_row_pitch, long host_slice_pitch, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueWriteBufferRect}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_write, const size_t * buffer_origin, const size_t * host_origin, const size_t * region, size_t buffer_row_pitch, size_t buffer_slice_pitch, size_t host_row_pitch, size_t host_slice_pitch, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyBuffer (long command_queue, long src_buffer, long dst_buffer, long src_offset, long dst_offset, long cb, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueCopyBuffer}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_buffer, size_t src_offset, size_t dst_offset, size_t cb, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyBufferRect (long command_queue, long src_buffer, long dst_buffer, PointerBuffer src_origin, PointerBuffer dst_origin, PointerBuffer region, long src_row_pitch, long src_slice_pitch, long dst_row_pitch, long dst_slice_pitch, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueCopyBufferRect}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_buffer, const size_t * src_origin, const size_t * dst_origin, const size_t * region, size_t src_row_pitch, size_t src_slice_pitch, size_t dst_row_pitch, size_t dst_slice_pitch, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueReadImage (long command_queue, long image, int blocking_read, PointerBuffer arg3, PointerBuffer arg4, long row_pitch, long slice_pitch, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueReadImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_read, const size_t * , const size_t * , size_t row_pitch, size_t slice_pitch, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueWriteImage (long command_queue, long image, int blocking_write, PointerBuffer arg3, PointerBuffer arg4, long input_row_pitch, long input_slice_pitch, Buffer ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueWriteImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_write, const size_t * , const size_t * , size_t input_row_pitch, size_t input_slice_pitch, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyImage (long command_queue, long src_image, long dst_image, PointerBuffer arg3, PointerBuffer arg4, PointerBuffer arg5, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueCopyImage}(cl_command_queue command_queue, cl_mem src_image, cl_mem dst_image, const size_t * , const size_t * , const size_t * , cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyImageToBuffer (long command_queue, long src_image, long dst_buffer, PointerBuffer arg3, PointerBuffer arg4, long dst_offset, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueCopyImageToBuffer}(cl_command_queue command_queue, cl_mem src_image, cl_mem dst_buffer, const size_t * , const size_t * , size_t dst_offset, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueCopyBufferToImage (long command_queue, long src_buffer, long dst_image, long src_offset, PointerBuffer arg4, PointerBuffer arg5, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueCopyBufferToImage}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_image, size_t src_offset, const size_t * , const size_t * , cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
ByteBuffer clEnqueueMapBuffer (long command_queue, long buffer, int blocking_map, long map_flags, long offset, long cb, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event, IntBuffer errcode_ret)
 Interface to C language function:
void * {@native clEnqueueMapBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_map, cl_map_flags map_flags, size_t offset, size_t cb, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event, cl_int * errcode_ret)
More...
 
ByteBuffer clEnqueueMapImage (long command_queue, long image, int blocking_map, long map_flags, PointerBuffer arg4, PointerBuffer arg5, PointerBuffer image_row_pitch, PointerBuffer image_slice_pitch, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event, IntBuffer errcode_ret)
 Interface to C language function:
void * {@native clEnqueueMapImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_map, cl_map_flags map_flags, const size_t * , const size_t * , size_t * image_row_pitch, size_t * image_slice_pitch, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event, cl_int * errcode_ret)
More...
 
int clEnqueueUnmapMemObject (long command_queue, long memobj, Buffer mapped_ptr, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueUnmapMemObject}(cl_command_queue command_queue, cl_mem memobj, void * mapped_ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueNDRangeKernel (long command_queue, long kernel, int work_dim, PointerBuffer global_work_offset, PointerBuffer global_work_size, PointerBuffer local_work_size, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueNDRangeKernel}(cl_command_queue command_queue, cl_kernel kernel, cl_uint work_dim, const size_t * global_work_offset, const size_t * global_work_size, const size_t * local_work_size, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueTask (long command_queue, long kernel, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueTask}(cl_command_queue command_queue, cl_kernel kernel, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueMarker (long command_queue, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueMarker}(cl_command_queue command_queue, cl_event * event)
More...
 
int clEnqueueWaitForEvents (long command_queue, int num_events, PointerBuffer event_list)
 Interface to C language function:
cl_int {@native clEnqueueWaitForEvents}(cl_command_queue command_queue, cl_uint num_events, const cl_event * event_list)
More...
 
int clEnqueueBarrier (long command_queue)
 Interface to C language function:
cl_int {@native clEnqueueBarrier}(cl_command_queue command_queue)

More...
 
int clIcdGetPlatformIDsKHR (int arg0, PointerBuffer arg1, IntBuffer arg2)
 Interface to C language function:
cl_int {@native clIcdGetPlatformIDsKHR}(cl_uint, cl_platform_id * , cl_uint * )
More...
 
int clReleaseDeviceEXT (long arg0)
 Interface to C language function:
cl_int {@native clReleaseDeviceEXT}(cl_device_id)

More...
 
int clRetainDeviceEXT (long arg0)
 Interface to C language function:
cl_int {@native clRetainDeviceEXT}(cl_device_id)

More...
 
int clCreateSubDevicesEXT (long arg0, LongBuffer arg1, int arg2, PointerBuffer arg3, IntBuffer arg4)
 Interface to C language function:
cl_int {@native clCreateSubDevicesEXT}(cl_device_id, const cl_device_partition_property_ext * , cl_uint, cl_device_id * , cl_uint * )
More...
 
int clCreateSubDevicesEXT (long arg0, long[] arg1, int arg1_offset, int arg2, PointerBuffer arg3, int[] arg4, int arg4_offset)
 Interface to C language function:
cl_int {@native clCreateSubDevicesEXT}(cl_device_id, const cl_device_partition_property_ext * , cl_uint, cl_device_id * , cl_uint * )
More...
 
long clCreateFromGLBuffer (long context, long flags, int bufobj, IntBuffer errcode_ret)
 Interface to C language function:
cl_mem {@native clCreateFromGLBuffer}(cl_context context, cl_mem_flags flags, cl_GLuint bufobj, int * errcode_ret)
More...
 
long clCreateFromGLBuffer (long context, long flags, int bufobj, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_mem {@native clCreateFromGLBuffer}(cl_context context, cl_mem_flags flags, cl_GLuint bufobj, int * errcode_ret)

More...
 
long clCreateFromGLTexture2D (long context, long flags, int target, int miplevel, int texture, IntBuffer errcode_ret)
 Interface to C language function:
cl_mem {@native clCreateFromGLTexture2D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)
More...
 
long clCreateFromGLTexture2D (long context, long flags, int target, int miplevel, int texture, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_mem {@native clCreateFromGLTexture2D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)

More...
 
long clCreateFromGLTexture3D (long context, long flags, int target, int miplevel, int texture, IntBuffer errcode_ret)
 Interface to C language function:
cl_mem {@native clCreateFromGLTexture3D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)
More...
 
long clCreateFromGLTexture3D (long context, long flags, int target, int miplevel, int texture, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_mem {@native clCreateFromGLTexture3D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)

More...
 
long clCreateFromGLRenderbuffer (long context, long flags, int renderbuffer, IntBuffer errcode_ret)
 Interface to C language function:
cl_mem {@native clCreateFromGLRenderbuffer}(cl_context context, cl_mem_flags flags, cl_GLuint renderbuffer, cl_int * errcode_ret)
More...
 
long clCreateFromGLRenderbuffer (long context, long flags, int renderbuffer, int[] errcode_ret, int errcode_ret_offset)
 Interface to C language function:
cl_mem {@native clCreateFromGLRenderbuffer}(cl_context context, cl_mem_flags flags, cl_GLuint renderbuffer, cl_int * errcode_ret)

More...
 
int clGetGLObjectInfo (long memobj, IntBuffer gl_object_type, IntBuffer gl_object_name)
 Interface to C language function:
cl_int {@native clGetGLObjectInfo}(cl_mem memobj, cl_gl_object_type * gl_object_type, cl_GLuint * gl_object_name)
More...
 
int clGetGLObjectInfo (long memobj, int[] gl_object_type, int gl_object_type_offset, int[] gl_object_name, int gl_object_name_offset)
 Interface to C language function:
cl_int {@native clGetGLObjectInfo}(cl_mem memobj, cl_gl_object_type * gl_object_type, cl_GLuint * gl_object_name)

More...
 
int clGetGLTextureInfo (long memobj, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetGLTextureInfo}(cl_mem memobj, cl_gl_texture_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
int clEnqueueAcquireGLObjects (long command_queue, int num_objects, PointerBuffer mem_objects, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueAcquireGLObjects}(cl_command_queue command_queue, cl_uint num_objects, const cl_mem * mem_objects, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clEnqueueReleaseGLObjects (long command_queue, int num_objects, PointerBuffer mem_objects, int num_events_in_wait_list, PointerBuffer event_wait_list, PointerBuffer event)
 Interface to C language function:
cl_int {@native clEnqueueReleaseGLObjects}(cl_command_queue command_queue, cl_uint num_objects, const cl_mem * mem_objects, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)
More...
 
int clGetGLContextInfoKHR (PointerBuffer properties, int param_name, long param_value_size, Buffer param_value, PointerBuffer param_value_size_ret)
 Interface to C language function:
cl_int {@native clGetGLContextInfoKHR}(const cl_context_properties * properties, cl_gl_context_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)
More...
 
long clCreateEventFromGLsyncKHR (long arg0, long arg1, IntBuffer arg2)
 Interface to C language function:
cl_event {@native clCreateEventFromGLsyncKHR}(cl_context, cl_GLsync, cl_int * )
More...
 
long clCreateEventFromGLsyncKHR (long arg0, long arg1, int[] arg2, int arg2_offset)
 Interface to C language function:
cl_event {@native clCreateEventFromGLsyncKHR}(cl_context, cl_GLsync, cl_int * )

More...
 
long clCreateContext (PointerBuffer properties, PointerBuffer devices, CLErrorHandler pfn_notify, IntBuffer errcode_ret)
 Interface to C language function:
cl_context {@native clCreateContext}(intptr_t * , uint32_t, cl_device_id * , void (*pfn_notify)(const char *, const void *, size_t, void *), void *, int32_t * );
More...
 
long clCreateContextFromType (PointerBuffer properties, long device_type, CLErrorHandler pfn_notify, IntBuffer errcode_ret)
 Interface to C language function:
cl_context {@native clCreateContextFromType}(cl_context_properties *properties, cl_device_type device_type, void (*pfn_notify)(const char *errinfo, const void *private_info, size_t cb, void *user_data), void *user_data, cl_int *errcode_ret) ;
More...
 
int clBuildProgram (long program, int deviceCount, PointerBuffer devices, String options, BuildProgramCallback cb)
 Interface to C language function:
int32_t {@native clBuildProgram}(cl_program, uint32_t, cl_device_id * , const char * , void (*pfn_notify)(cl_program, void *user_data), void * );
More...
 
int clSetMemObjectDestructorCallback (long memObjID, CLMemObjectDestructorCallback cb)
 Interface to C language function:
int32_t {@native clSetMemObjectDestructorCallback}(cl_mem memobj, void (CL_CALLBACK *pfn_notify) (cl_mem memobj, void *user_data), void *user_data);
More...
 
int clSetEventCallback (long event, int type, CLEventCallback cb)
 Interface to C language function:
int32_t {@native clSetEventCallback}(cl_event event, cl_int command_exec_callback_type, void (CL_CALLBACK *pfn_event_notify) (cl_event event, cl_int event_command_exec_status, void *user_data), void *user_data);
More...
 

Static Public Attributes

static final int KHRONOS_FALSE = 0x0
 Defined as part of enum type "khronos_boolean_enum_t" with expression '0', CType: int. More...
 
static final int KHRONOS_TRUE = 0x1
 Defined as part of enum type "khronos_boolean_enum_t" with expression '1', CType: int. More...
 
static final int KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = 0x7fffffff
 Defined as part of enum type "khronos_boolean_enum_t" with expression '0x7FFFFFFF', CType: int. More...
 
static final int CL_INVALID_WORK_ITEM_SIZE = -55
 Define "CL_INVALID_WORK_ITEM_SIZE" with expression '-55', CType: int. More...
 
static final int CL_INVALID_GLOBAL_WORK_SIZE = -63
 Define "CL_INVALID_GLOBAL_WORK_SIZE" with expression '-63', CType: int. More...
 
static final int CL_BGRA = 0x10b6
 Define "CL_BGRA" with expression '0x10B6', CType: int. More...
 
static final int CL_SNORM_INT8 = 0x10d0
 Define "CL_SNORM_INT8" with expression '0x10D0', CType: int. More...
 
static final int CL_MEM_OBJECT_ALLOCATION_FAILURE = -4
 Define "CL_MEM_OBJECT_ALLOCATION_FAILURE" with expression '-4', CType: int. More...
 
static final int CL_PROGRAM_BUILD_STATUS = 0x1181
 Define "CL_PROGRAM_BUILD_STATUS" with expression '0x1181', CType: int. More...
 
static final int CL_SAMPLER_ADDRESSING_MODE = 0x1153
 Define "CL_SAMPLER_ADDRESSING_MODE" with expression '0x1153', CType: int. More...
 
static final int CL_DEVICE_IMAGE2D_MAX_HEIGHT = 0x1012
 Define "CL_DEVICE_IMAGE2D_MAX_HEIGHT" with expression '0x1012', CType: int. More...
 
static final int CL_DEVICE_TYPE_GPU = ( 0x1 << 0x2 )
 Define "CL_DEVICE_TYPE_GPU" with expression '(1 << 2)', CType: int. More...
 
static final int CL_RGBA = 0x10b5
 Define "CL_RGBA" with expression '0x10B5', CType: int. More...
 
static final int CL_KERNEL_CONTEXT = 0x1193
 Define "CL_KERNEL_CONTEXT" with expression '0x1193', CType: int. More...
 
static final int CL_SAMPLER_FILTER_MODE = 0x1154
 Define "CL_SAMPLER_FILTER_MODE" with expression '0x1154', CType: int. More...
 
static final int CL_DEVICE_IMAGE3D_MAX_HEIGHT = 0x1014
 Define "CL_DEVICE_IMAGE3D_MAX_HEIGHT" with expression '0x1014', CType: int. More...
 
static final int CL_IMAGE_HEIGHT = 0x1115
 Define "CL_IMAGE_HEIGHT" with expression '0x1115', CType: int. More...
 
static final int CL_DBL_MAX_10_EXP = 0x134
 Define "CL_DBL_MAX_10_EXP" with expression '+308', CType: int. More...
 
static final int CL_FLT_MIN_EXP = -125
 Define "CL_FLT_MIN_EXP" with expression '-125', CType: int. More...
 
static final int CL_FP_INF_NAN = ( 0x1 << 0x1 )
 Define "CL_FP_INF_NAN" with expression '(1 << 1)', CType: int. More...
 
static final float CL_M_2_SQRTPI_F = 1.1283792257309f
 Define "CL_M_2_SQRTPI_F" with expression '1.12837922573090f', CType: float. More...
 
static final int CL_PROFILING_INFO_NOT_AVAILABLE = -7
 Define "CL_PROFILING_INFO_NOT_AVAILABLE" with expression '-7', CType: int. More...
 
static final int CL_MEM_READ_ONLY = ( 0x1 << 0x2 )
 Define "CL_MEM_READ_ONLY" with expression '(1 << 2)', CType: int. More...
 
static final int CL_BUILD_PROGRAM_FAILURE = -11
 Define "CL_BUILD_PROGRAM_FAILURE" with expression '-11', CType: int. More...
 
static final int CL_INVALID_KERNEL_ARGS = -52
 Define "CL_INVALID_KERNEL_ARGS" with expression '-52', CType: int. More...
 
static final int CL_SAMPLER_NORMALIZED_COORDS = 0x1152
 Define "CL_SAMPLER_NORMALIZED_COORDS" with expression '0x1152', CType: int. More...
 
static final int CL_DEVICE_IMAGE3D_MAX_DEPTH = 0x1015
 Define "CL_DEVICE_IMAGE3D_MAX_DEPTH" with expression '0x1015', CType: int. More...
 
static final int CL_DEVICE_REFERENCE_COUNT_EXT = 0x4057
 Define "CL_DEVICE_REFERENCE_COUNT_EXT" with expression '0x4057', CType: int. More...
 
static final int CL_INT_MIN = ( - 0x7fffffff - 0x1 )
 Define "CL_INT_MIN" with expression '(-2147483647-1)', CType: int. More...
 
static final int CL_IMAGE_SLICE_PITCH = 0x1113
 Define "CL_IMAGE_SLICE_PITCH" with expression '0x1113', CType: int. More...
 
static final int CL_DEVICES_FOR_GL_CONTEXT_KHR = 0x2007
 Define "CL_DEVICES_FOR_GL_CONTEXT_KHR" with expression '0x2007', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE = 0x100b
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE" with expression '0x100B', CType: int. More...
 
static final int CL_DEVICE_TYPE = 0x1000
 Define "CL_DEVICE_TYPE" with expression '0x1000', CType: int. More...
 
static final int CL_MEM_HOST_PTR = 0x1103
 Define "CL_MEM_HOST_PTR" with expression '0x1103', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_NUMA_EXT = 0x10
 Define "CL_AFFINITY_DOMAIN_NUMA_EXT" with expression '0x10', CType: int. More...
 
static final int CL_DEVICE_PROFILING_TIMER_RESOLUTION = 0x1025
 Define "CL_DEVICE_PROFILING_TIMER_RESOLUTION" with expression '0x1025', CType: int. More...
 
static final int CL_ADDRESS_NONE = 0x1130
 Define "CL_ADDRESS_NONE" with expression '0x1130', CType: int. More...
 
static final int CL_INVALID_PARTITION_NAME_EXT = -1059
 Define "CL_INVALID_PARTITION_NAME_EXT" with expression '-1059', CType: int. More...
 
static final int CL_DBL_DIG = 0xf
 Define "CL_DBL_DIG" with expression '15', CType: int. More...
 
static final int CL_PROGRAM_BINARIES = 0x1166
 Define "CL_PROGRAM_BINARIES" with expression '0x1166', CType: int. More...
 
static final int CL_INVALID_MIP_LEVEL = -62
 Define "CL_INVALID_MIP_LEVEL" with expression '-62', CType: int. More...
 
static final int CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV = 0x4001
 Define "CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV" with expression '0x4001', CType: int. More...
 
static final int CL_DBL_RADIX = 0x2
 Define "CL_DBL_RADIX" with expression '2', CType: int. More...
 
static final int CL_DEVICE_MAX_COMPUTE_UNITS = 0x1002
 Define "CL_DEVICE_MAX_COMPUTE_UNITS" with expression '0x1002', CType: int. More...
 
static final int CL_UNORM_INT_101010 = 0x10d6
 Define "CL_UNORM_INT_101010" with expression '0x10D6', CType: int. More...
 
static final int CL_ADDRESS_CLAMP = 0x1132
 Define "CL_ADDRESS_CLAMP" with expression '0x1132', CType: int. More...
 
static final int CL_COMMAND_COPY_BUFFER = 0x11f5
 Define "CL_COMMAND_COPY_BUFFER" with expression '0x11F5', CType: int. More...
 
static final int CL_INVALID_ARG_INDEX = -49
 Define "CL_INVALID_ARG_INDEX" with expression '-49', CType: int. More...
 
static final int CL_FILTER_LINEAR = 0x1141
 Define "CL_FILTER_LINEAR" with expression '0x1141', CType: int. More...
 
static final int CL_PROGRAM_REFERENCE_COUNT = 0x1160
 Define "CL_PROGRAM_REFERENCE_COUNT" with expression '0x1160', CType: int. More...
 
static final float CL_M_2_PI = 0.6366197723675814f
 Define "CL_M_2_PI" with expression '0.636619772367581382433', CType: float. More...
 
static final int CL_FLOAT = 0x10de
 Define "CL_FLOAT" with expression '0x10DE', CType: int. More...
 
static final int CL_DEVICE_KERNEL_EXEC_TIMEOUT_NV = 0x4005
 Define "CL_DEVICE_KERNEL_EXEC_TIMEOUT_NV" with expression '0x4005', CType: int. More...
 
static final int CL_KERNEL_NUM_ARGS = 0x1191
 Define "CL_KERNEL_NUM_ARGS" with expression '0x1191', CType: int. More...
 
static final int CL_PLATFORM_VERSION = 0x901
 Define "CL_PLATFORM_VERSION" with expression '0x0901', CType: int. More...
 
static final int CL_OUT_OF_RESOURCES = -5
 Define "CL_OUT_OF_RESOURCES" with expression '-5', CType: int. More...
 
static final int CL_VERSION_1_1 = 0x1
 Define "CL_VERSION_1_1" with expression '1', CType: int. More...
 
static final int CL_VERSION_1_0 = 0x1
 Define "CL_VERSION_1_0" with expression '1', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT = 0x100a
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT" with expression '0x100A', CType: int. More...
 
static final int CL_INVALID_PLATFORM = -32
 Define "CL_INVALID_PLATFORM" with expression '-32', CType: int. More...
 
static final float CL_M_PI_2_F = 1.57079637050629f
 Define "CL_M_PI_2_F" with expression '1.57079637050629f', CType: float. More...
 
static final int CL_PROGRAM_BUILD_OPTIONS = 0x1182
 Define "CL_PROGRAM_BUILD_OPTIONS" with expression '0x1182', CType: int. More...
 
static final int CL_BUILD_NONE = -1
 Define "CL_BUILD_NONE" with expression '-1', CType: int. More...
 
static final int CL_RUNNING = 0x1
 Define "CL_RUNNING" with expression '0x1', CType: int. More...
 
static final int CL_INVALID_KERNEL = -48
 Define "CL_INVALID_KERNEL" with expression '-48', CType: int. More...
 
static final int CL_IMAGE_FORMAT_NOT_SUPPORTED = -10
 Define "CL_IMAGE_FORMAT_NOT_SUPPORTED" with expression '-10', CType: int. More...
 
static final int CL_CHAR_MAX = 0x7f
 Define "CL_CHAR_MAX" with expression '127', CType: int. More...
 
static final int CL_QUEUE_PROFILING_ENABLE = ( 0x1 << 0x1 )
 Define "CL_QUEUE_PROFILING_ENABLE" with expression '(1 << 1)', CType: int. More...
 
static final float CL_M_LN10_F = 2.30258512496948f
 Define "CL_M_LN10_F" with expression '2.30258512496948f', CType: float. More...
 
static final int CL_IMAGE_DEPTH = 0x1116
 Define "CL_IMAGE_DEPTH" with expression '0x1116', CType: int. More...
 
static final int CL_UNORM_INT16 = 0x10d3
 Define "CL_UNORM_INT16" with expression '0x10D3', CType: int. More...
 
static final int CL_MAP_WRITE = ( 0x1 << 0x1 )
 Define "CL_MAP_WRITE" with expression '(1 << 1)', CType: int. More...
 
static final int CL_SCHAR_MAX = 0x7f
 Define "CL_SCHAR_MAX" with expression '127', CType: int. More...
 
static final int GLEXT_64_TYPES_DEFINED = 0x1
 Define "GLEXT_64_TYPES_DEFINED" with expression '1', CType: int. More...
 
static final int CL_PROFILING_COMMAND_END = 0x1283
 Define "CL_PROFILING_COMMAND_END" with expression '0x1283', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG = 0x1009
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG" with expression '0x1009', CType: int. More...
 
static final int CL_CHAR_BIT = 0x8
 Define "CL_CHAR_BIT" with expression '8', CType: int. More...
 
static final int CL_MEM_WRITE_ONLY = ( 0x1 << 0x1 )
 Define "CL_MEM_WRITE_ONLY" with expression '(1 << 1)', CType: int. More...
 
static final int CL_RGBx = 0x10bc
 Define "CL_RGBx" with expression '0x10BC', CType: int. More...
 
static final int CL_MAP_FAILURE = -12
 Define "CL_MAP_FAILURE" with expression '-12', CType: int. More...
 
static final int CL_MEM_COPY_OVERLAP = -8
 Define "CL_MEM_COPY_OVERLAP" with expression '-8', CType: int. More...
 
static final int CL_DBL_MIN_10_EXP = -307
 Define "CL_DBL_MIN_10_EXP" with expression '-307', CType: int. More...
 
static final int CL_PROFILING_COMMAND_SUBMIT = 0x1281
 Define "CL_PROFILING_COMMAND_SUBMIT" with expression '0x1281', CType: int. More...
 
static final float CL_M_1_PI = 0.3183098861837907f
 Define "CL_M_1_PI" with expression '0.318309886183790691216', CType: float. More...
 
static final int CL_QUEUE_PROPERTIES = 0x1093
 Define "CL_QUEUE_PROPERTIES" with expression '0x1093', CType: int. More...
 
static final int CL_PROFILING_COMMAND_QUEUED = 0x1280
 Define "CL_PROFILING_COMMAND_QUEUED" with expression '0x1280', CType: int. More...
 
static final int CL_INVALID_PROGRAM_EXECUTABLE = -45
 Define "CL_INVALID_PROGRAM_EXECUTABLE" with expression '-45', CType: int. More...
 
static final int KHRONOS_MAX_ENUM = 0x7fffffff
 Define "KHRONOS_MAX_ENUM" with expression '0x7FFFFFFF', CType: int. More...
 
static final float CL_MAXFLOAT = 3.4028234663852886E38f
 Define "CL_MAXFLOAT" with expression '0x1.fffffep127f', CType: float. More...
 
static final int CL_COMMAND_NATIVE_KERNEL = 0x11f2
 Define "CL_COMMAND_NATIVE_KERNEL" with expression '0x11F2', CType: int. More...
 
static final int CL_ADDRESS_REPEAT = 0x1133
 Define "CL_ADDRESS_REPEAT" with expression '0x1133', CType: int. More...
 
static final int CL_TRUE = 0x1
 Define "CL_TRUE" with expression '1', CType: int. More...
 
static final int CL_KERNEL_LOCAL_MEM_SIZE = 0x11b2
 Define "CL_KERNEL_LOCAL_MEM_SIZE" with expression '0x11B2', CType: int. More...
 
static final float CL_FLT_EPSILON = 1.1920928955078125E-7f
 Define "CL_FLT_EPSILON" with expression '0x1.0p-23f', CType: float. More...
 
static final int CL_DEVICE_GPU_OVERLAP_NV = 0x4004
 Define "CL_DEVICE_GPU_OVERLAP_NV" with expression '0x4004', CType: int. More...
 
static final int CL_DEVICE_PARTITION_TYPES_EXT = 0x4055
 Define "CL_DEVICE_PARTITION_TYPES_EXT" with expression '0x4055', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT = 0x1037
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT" with expression '0x1037', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_L3_CACHE_EXT = 0x3
 Define "CL_AFFINITY_DOMAIN_L3_CACHE_EXT" with expression '0x3', CType: int. More...
 
static final double CL_DBL_MAX = 1.7976931348623157E308
 Define "CL_DBL_MAX" with expression '0x1.fffffffffffffp1023', CType: double. More...
 
static final int CL_SUBMITTED = 0x2
 Define "CL_SUBMITTED" with expression '0x2', CType: int. More...
 
static final int CL_PROGRAM_SOURCE = 0x1164
 Define "CL_PROGRAM_SOURCE" with expression '0x1164', CType: int. More...
 
static final int CL_DEVICE_LOCAL_MEM_TYPE = 0x1022
 Define "CL_DEVICE_LOCAL_MEM_TYPE" with expression '0x1022', CType: int. More...
 
static final float CL_M_PI_4_F = 0.78539818525314f
 Define "CL_M_PI_4_F" with expression '0.78539818525314f', CType: float. More...
 
static final int CL_PLATFORM_VENDOR = 0x903
 Define "CL_PLATFORM_VENDOR" with expression '0x0903', CType: int. More...
 
static final int CL_COMMAND_USER = 0x1204
 Define "CL_COMMAND_USER" with expression '0x1204', CType: int. More...
 
static final int CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST = -14
 Define "CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST" with expression '-14', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG = 0x1039
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG" with expression '0x1039', CType: int. More...
 
static final int CL_DEVICE_PARTITION_BY_NAMES_EXT = 0x4052
 Define "CL_DEVICE_PARTITION_BY_NAMES_EXT" with expression '0x4052', CType: int. More...
 
static final int CL_COMMAND_COPY_BUFFER_TO_IMAGE = 0x11fa
 Define "CL_COMMAND_COPY_BUFFER_TO_IMAGE" with expression '0x11FA', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE = 0x103b
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE" with expression '0x103B', CType: int. More...
 
static final int CL_BUILD_IN_PROGRESS = -3
 Define "CL_BUILD_IN_PROGRESS" with expression '-3', CType: int. More...
 
static final int CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE = 0x11b3
 Define "CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE" with expression '0x11B3', CType: int. More...
 
static final int KHRONOS_SUPPORT_FLOAT = 0x1
 Define "KHRONOS_SUPPORT_FLOAT" with expression '1', CType: int. More...
 
static final int CL_INVALID_SAMPLER = -41
 Define "CL_INVALID_SAMPLER" with expression '-41', CType: int. More...
 
static final int CL_DEVICE_VENDOR = 0x102c
 Define "CL_DEVICE_VENDOR" with expression '0x102C', CType: int. More...
 
static final int CL_COMMAND_WRITE_BUFFER = 0x11f4
 Define "CL_COMMAND_WRITE_BUFFER" with expression '0x11F4', CType: int. More...
 
static final int CL_BUILD_SUCCESS = 0x0
 Define "CL_BUILD_SUCCESS" with expression '0', CType: int. More...
 
static final int CL_COMMAND_UNMAP_MEM_OBJECT = 0x11fd
 Define "CL_COMMAND_UNMAP_MEM_OBJECT" with expression '0x11FD', CType: int. More...
 
static final float CL_M_SQRT2_F = 1.41421353816986f
 Define "CL_M_SQRT2_F" with expression '1.41421353816986f', CType: float. More...
 
static final int CL_MEM_FLAGS = 0x1101
 Define "CL_MEM_FLAGS" with expression '0x1101', CType: int. More...
 
static final int CL_FLT_MIN_10_EXP = -37
 Define "CL_FLT_MIN_10_EXP" with expression '-37', CType: int. More...
 
static final int CL_INVALID_CONTEXT = -34
 Define "CL_INVALID_CONTEXT" with expression '-34', CType: int. More...
 
static final int CL_DEVICE_MAX_WRITE_IMAGE_ARGS = 0x100f
 Define "CL_DEVICE_MAX_WRITE_IMAGE_ARGS" with expression '0x100F', CType: int. More...
 
static final float CL_M_E = 2.718281828459045f
 Define "CL_M_E" with expression '2.718281828459045090796', CType: float. More...
 
static final int CL_LOCAL = 0x1
 Define "CL_LOCAL" with expression '0x1', CType: int. More...
 
static final int CL_DEVICE_EXECUTION_CAPABILITIES = 0x1029
 Define "CL_DEVICE_EXECUTION_CAPABILITIES" with expression '0x1029', CType: int. More...
 
static final int CL_EXEC_KERNEL = ( 0x1 << 0x0 )
 Define "CL_EXEC_KERNEL" with expression '(1 << 0)', CType: int. More...
 
static final int CL_INT_MAX = 0x7fffffff
 Define "CL_INT_MAX" with expression '2147483647', CType: int. More...
 
static final int CL_FP_DENORM = ( 0x1 << 0x0 )
 Define "CL_FP_DENORM" with expression '(1 << 0)', CType: int. More...
 
static final float CL_FLT_MIN = 1.1754943508222875E-38f
 Define "CL_FLT_MIN" with expression '0x1.0p-126f', CType: float. More...
 
static final int CL_DBL_MAX_EXP = 0x400
 Define "CL_DBL_MAX_EXP" with expression '+1024', CType: int. More...
 
static final int CL_RGB = 0x10b4
 Define "CL_RGB" with expression '0x10B4', CType: int. More...
 
static final int CL_DEVICE_GLOBAL_MEM_CACHE_TYPE = 0x101c
 Define "CL_DEVICE_GLOBAL_MEM_CACHE_TYPE" with expression '0x101C', CType: int. More...
 
static final int CL_DEVICE_MAX_SAMPLERS = 0x1018
 Define "CL_DEVICE_MAX_SAMPLERS" with expression '0x1018', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_L4_CACHE_EXT = 0x4
 Define "CL_AFFINITY_DOMAIN_L4_CACHE_EXT" with expression '0x4', CType: int. More...
 
static final float CL_M_SQRT1_2 = 0.7071067811865476f
 Define "CL_M_SQRT1_2" with expression '0.707106781186547572737', CType: float. More...
 
static final int CL_DEVICE_HALF_FP_CONFIG = 0x1033
 Define "CL_DEVICE_HALF_FP_CONFIG" with expression '0x1033', CType: int. More...
 
static final int CL_DEVICE_TYPE_ACCELERATOR = ( 0x1 << 0x3 )
 Define "CL_DEVICE_TYPE_ACCELERATOR" with expression '(1 << 3)', CType: int. More...
 
static final int CL_DEVICE_COMPILER_AVAILABLE = 0x1028
 Define "CL_DEVICE_COMPILER_AVAILABLE" with expression '0x1028', CType: int. More...
 
static final int CL_COMMAND_ACQUIRE_GL_OBJECTS = 0x11ff
 Define "CL_COMMAND_ACQUIRE_GL_OBJECTS" with expression '0x11FF', CType: int. More...
 
static final int CL_INVALID_PARTITION_COUNT_EXT = -1058
 Define "CL_INVALID_PARTITION_COUNT_EXT" with expression '-1058', CType: int. More...
 
static final int CL_MEM_USE_HOST_PTR = ( 0x1 << 0x3 )
 Define "CL_MEM_USE_HOST_PTR" with expression '(1 << 3)', CType: int. More...
 
static final int CL_DEVICE_IMAGE2D_MAX_WIDTH = 0x1011
 Define "CL_DEVICE_IMAGE2D_MAX_WIDTH" with expression '0x1011', CType: int. More...
 
static final int CL_EVENT_COMMAND_EXECUTION_STATUS = 0x11d3
 Define "CL_EVENT_COMMAND_EXECUTION_STATUS" with expression '0x11D3', CType: int. More...
 
static final int CL_DEVICE_PLATFORM = 0x1031
 Define "CL_DEVICE_PLATFORM" with expression '0x1031', CType: int. More...
 
static final int CL_INVALID_ARG_VALUE = -50
 Define "CL_INVALID_ARG_VALUE" with expression '-50', CType: int. More...
 
static final int CL_DEVICE_MAX_MEM_ALLOC_SIZE = 0x1010
 Define "CL_DEVICE_MAX_MEM_ALLOC_SIZE" with expression '0x1010', CType: int. More...
 
static final int CL_INVALID_DEVICE_TYPE = -31
 Define "CL_INVALID_DEVICE_TYPE" with expression '-31', CType: int. More...
 
static final int CL_SUCCESS = 0x0
 Define "CL_SUCCESS" with expression '0', CType: int. More...
 
static final int CL_UNORM_SHORT_565 = 0x10d4
 Define "CL_UNORM_SHORT_565" with expression '0x10D4', CType: int. More...
 
static final int CL_DEVICE_PARTITION_EQUALLY_EXT = 0x4050
 Define "CL_DEVICE_PARTITION_EQUALLY_EXT" with expression '0x4050', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT = 0x103a
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT" with expression '0x103A', CType: int. More...
 
static final int CL_IMAGE_FORMAT = 0x1110
 Define "CL_IMAGE_FORMAT" with expression '0x1110', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR = 0x1006
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR" with expression '0x1006', CType: int. More...
 
static final int CL_IMAGE_ELEMENT_SIZE = 0x1111
 Define "CL_IMAGE_ELEMENT_SIZE" with expression '0x1111', CType: int. More...
 
static final int CL_PROFILING_COMMAND_START = 0x1282
 Define "CL_PROFILING_COMMAND_START" with expression '0x1282', CType: int. More...
 
static final int CL_INVALID_BUILD_OPTIONS = -43
 Define "CL_INVALID_BUILD_OPTIONS" with expression '-43', CType: int. More...
 
static final int CL_COMMAND_WRITE_BUFFER_RECT = 0x1202
 Define "CL_COMMAND_WRITE_BUFFER_RECT" with expression '0x1202', CType: int. More...
 
static final float CL_M_LN2_F = 0.6931471824646f
 Define "CL_M_LN2_F" with expression '0.69314718246460f', CType: float. More...
 
static final int CL_INVALID_VALUE = -30
 Define "CL_INVALID_VALUE" with expression '-30', CType: int. More...
 
static final int CL_CONTEXT_NUM_DEVICES = 0x1083
 Define "CL_CONTEXT_NUM_DEVICES" with expression '0x1083', CType: int. More...
 
static final int CL_ARGB = 0x10b7
 Define "CL_ARGB" with expression '0x10B7', CType: int. More...
 
static final int CL_DEVICE_MAX_CLOCK_FREQUENCY = 0x100c
 Define "CL_DEVICE_MAX_CLOCK_FREQUENCY" with expression '0x100C', CType: int. More...
 
static final int CL_SIGNED_INT8 = 0x10d7
 Define "CL_SIGNED_INT8" with expression '0x10D7', CType: int. More...
 
static final int CL_COMPLETE = 0x0
 Define "CL_COMPLETE" with expression '0x0', CType: int. More...
 
static final int CL_FP_FMA = ( 0x1 << 0x5 )
 Define "CL_FP_FMA" with expression '(1 << 5)', CType: int. More...
 
static final int CL_INTENSITY = 0x10b8
 Define "CL_INTENSITY" with expression '0x10B8', CType: int. More...
 
static final int CL_DEVICE_PARTITION_STYLE_EXT = 0x4058
 Define "CL_DEVICE_PARTITION_STYLE_EXT" with expression '0x4058', CType: int. More...
 
static final int CL_DEVICE_NOT_AVAILABLE = -2
 Define "CL_DEVICE_NOT_AVAILABLE" with expression '-2', CType: int. More...
 
static final int CL_DEVICE_MAX_PARAMETER_SIZE = 0x1017
 Define "CL_DEVICE_MAX_PARAMETER_SIZE" with expression '0x1017', CType: int. More...
 
static final int CL_IMAGE_FORMAT_MISMATCH = -9
 Define "CL_IMAGE_FORMAT_MISMATCH" with expression '-9', CType: int. More...
 
static final int CL_KERNEL_FUNCTION_NAME = 0x1190
 Define "CL_KERNEL_FUNCTION_NAME" with expression '0x1190', CType: int. More...
 
static final int CL_PLATFORM_NOT_FOUND_KHR = -1001
 Define "CL_PLATFORM_NOT_FOUND_KHR" with expression '-1001', CType: int. More...
 
static final int cl_khr_icd = 0x1
 Define "cl_khr_icd" with expression '1', CType: int. More...
 
static final int CL_INVALID_BUFFER_SIZE = -61
 Define "CL_INVALID_BUFFER_SIZE" with expression '-61', CType: int. More...
 
static final int CL_DEVICE_EXTENSIONS = 0x1030
 Define "CL_DEVICE_EXTENSIONS" with expression '0x1030', CType: int. More...
 
static final int CL_DEVICE_PARTITION_BY_COUNTS_EXT = 0x4051
 Define "CL_DEVICE_PARTITION_BY_COUNTS_EXT" with expression '0x4051', CType: int. More...
 
static final int CL_FLT_MAX_EXP = 0x80
 Define "CL_FLT_MAX_EXP" with expression '+128', CType: int. More...
 
static final int CL_COMMAND_READ_IMAGE = 0x11f6
 Define "CL_COMMAND_READ_IMAGE" with expression '0x11F6', CType: int. More...
 
static final int CL_UNSIGNED_INT32 = 0x10dc
 Define "CL_UNSIGNED_INT32" with expression '0x10DC', CType: int. More...
 
static final int CL_COMPILER_NOT_AVAILABLE = -3
 Define "CL_COMPILER_NOT_AVAILABLE" with expression '-3', CType: int. More...
 
static final int CL_R = 0x10b0
 Define "CL_R" with expression '0x10B0', CType: int. More...
 
static final int CL_GL_OBJECT_RENDERBUFFER = 0x2003
 Define "CL_GL_OBJECT_RENDERBUFFER" with expression '0x2003', CType: int. More...
 
static final int CL_UNSIGNED_INT16 = 0x10db
 Define "CL_UNSIGNED_INT16" with expression '0x10DB', CType: int. More...
 
static final int CL_INVALID_EVENT = -58
 Define "CL_INVALID_EVENT" with expression '-58', CType: int. More...
 
static final int CL_UNORM_INT8 = 0x10d2
 Define "CL_UNORM_INT8" with expression '0x10D2', CType: int. More...
 
static final int CL_KERNEL_PROGRAM = 0x1194
 Define "CL_KERNEL_PROGRAM" with expression '0x1194', CType: int. More...
 
static final int CL_PLATFORM_PROFILE = 0x900
 Define "CL_PLATFORM_PROFILE" with expression '0x0900', CType: int. More...
 
static final int CL_READ_ONLY_CACHE = 0x1
 Define "CL_READ_ONLY_CACHE" with expression '0x1', CType: int. More...
 
static final int CL_EVENT_REFERENCE_COUNT = 0x11d2
 Define "CL_EVENT_REFERENCE_COUNT" with expression '0x11D2', CType: int. More...
 
static final int CL_A = 0x10b1
 Define "CL_A" with expression '0x10B1', CType: int. More...
 
static final int CL_GL_MIPMAP_LEVEL = 0x2005
 Define "CL_GL_MIPMAP_LEVEL" with expression '0x2005', CType: int. More...
 
static final int CL_PRINTF_CALLBACK_ARM = 0x40b0
 Define "CL_PRINTF_CALLBACK_ARM" with expression '0x40B0', CType: int. More...
 
static final int CL_SHRT_MAX = 0x7fff
 Define "CL_SHRT_MAX" with expression '32767', CType: int. More...
 
static final int CL_UNORM_SHORT_555 = 0x10d5
 Define "CL_UNORM_SHORT_555" with expression '0x10D5', CType: int. More...
 
static final int CL_CONTEXT_PLATFORM = 0x1084
 Define "CL_CONTEXT_PLATFORM" with expression '0x1084', CType: int. More...
 
static final int CL_DEVICE_MAX_WORK_ITEM_SIZES = 0x1005
 Define "CL_DEVICE_MAX_WORK_ITEM_SIZES" with expression '0x1005', CType: int. More...
 
static final int CL_EGL_DISPLAY_KHR = 0x2009
 Define "CL_EGL_DISPLAY_KHR" with expression '0x2009', CType: int. More...
 
static final float CL_M_2_SQRTPI = 1.1283791670955126f
 Define "CL_M_2_SQRTPI" with expression '1.128379167095512558561', CType: float. More...
 
static final int CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS = 0x1003
 Define "CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS" with expression '0x1003', CType: int. More...
 
static final int CL_GL_TEXTURE_TARGET = 0x2004
 Define "CL_GL_TEXTURE_TARGET" with expression '0x2004', CType: int. More...
 
static final int CL_DEVICE_OPENCL_C_VERSION = 0x103d
 Define "CL_DEVICE_OPENCL_C_VERSION" with expression '0x103D', CType: int. More...
 
static final int CL_MEM_TYPE = 0x1100
 Define "CL_MEM_TYPE" with expression '0x1100', CType: int. More...
 
static final int CL_INVALID_WORK_GROUP_SIZE = -54
 Define "CL_INVALID_WORK_GROUP_SIZE" with expression '-54', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR = 0x1036
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR" with expression '0x1036', CType: int. More...
 
static final int CL_DEVICE_PARTITION_BY_AFFINITY_DOMAIN_EXT = 0x4053
 Define "CL_DEVICE_PARTITION_BY_AFFINITY_DOMAIN_EXT" with expression '0x4053', CType: int. More...
 
static final int CL_COMMAND_COPY_IMAGE = 0x11f8
 Define "CL_COMMAND_COPY_IMAGE" with expression '0x11F8', CType: int. More...
 
static final int CL_FP_ROUND_TO_INF = ( 0x1 << 0x4 )
 Define "CL_FP_ROUND_TO_INF" with expression '(1 << 4)', CType: int. More...
 
static final float CL_M_PI = 3.141592653589793f
 Define "CL_M_PI" with expression '3.141592653589793115998', CType: float. More...
 
static final int CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE = 0x101a
 Define "CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE" with expression '0x101A', CType: int. More...
 
static final int CL_RA = 0x10b3
 Define "CL_RA" with expression '0x10B3', CType: int. More...
 
static final int CL_FLT_MANT_DIG = 0x18
 Define "CL_FLT_MANT_DIG" with expression '24', CType: int. More...
 
static final double CL_DBL_MIN = 2.2250738585072014E-308
 Define "CL_DBL_MIN" with expression '0x1.0p-1022', CType: double. More...
 
static final int CL_COMMAND_COPY_IMAGE_TO_BUFFER = 0x11f9
 Define "CL_COMMAND_COPY_IMAGE_TO_BUFFER" with expression '0x11F9', CType: int. More...
 
static final int cl_khr_gl_sharing = 0x1
 Define "cl_khr_gl_sharing" with expression '1', CType: int. More...
 
static final int CL_DEVICE_MAX_CONSTANT_ARGS = 0x1021
 Define "CL_DEVICE_MAX_CONSTANT_ARGS" with expression '0x1021', CType: int. More...
 
static final int CL_DEVICE_GLOBAL_MEM_SIZE = 0x101f
 Define "CL_DEVICE_GLOBAL_MEM_SIZE" with expression '0x101F', CType: int. More...
 
static final int CL_NONE = 0x0
 Define "CL_NONE" with expression '0x0', CType: int. More...
 
static final int CL_CONTEXT_REFERENCE_COUNT = 0x1080
 Define "CL_CONTEXT_REFERENCE_COUNT" with expression '0x1080', CType: int. More...
 
static final int CL_RG = 0x10b2
 Define "CL_RG" with expression '0x10B2', CType: int. More...
 
static final int CL_FLT_RADIX = 0x2
 Define "CL_FLT_RADIX" with expression '2', CType: int. More...
 
static final int CL_KERNEL_COMPILE_WORK_GROUP_SIZE = 0x11b1
 Define "CL_KERNEL_COMPILE_WORK_GROUP_SIZE" with expression '0x11B1', CType: int. More...
 
static final float CL_M_1_PI_F = 0.31830987334251f
 Define "CL_M_1_PI_F" with expression '0.31830987334251f', CType: float. More...
 
static final int CL_DEVICE_ADDRESS_BITS = 0x100d
 Define "CL_DEVICE_ADDRESS_BITS" with expression '0x100D', CType: int. More...
 
static final int CL_CGL_SHAREGROUP_KHR = 0x200c
 Define "CL_CGL_SHAREGROUP_KHR" with expression '0x200C', CType: int. More...
 
static final int CL_Rx = 0x10ba
 Define "CL_Rx" with expression '0x10BA', CType: int. More...
 
static final int CL_INVALID_KERNEL_NAME = -46
 Define "CL_INVALID_KERNEL_NAME" with expression '-46', CType: int. More...
 
static final int CL_BUILD_ERROR = -2
 Define "CL_BUILD_ERROR" with expression '-2', CType: int. More...
 
static final int CL_ADDRESS_CLAMP_TO_EDGE = 0x1131
 Define "CL_ADDRESS_CLAMP_TO_EDGE" with expression '0x1131', CType: int. More...
 
static final int CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR = 0x200d
 Define "CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR" with expression '0x200D', CType: int. More...
 
static final int CL_DEVICE_GLOBAL_MEM_CACHE_SIZE = 0x101e
 Define "CL_DEVICE_GLOBAL_MEM_CACHE_SIZE" with expression '0x101E', CType: int. More...
 
static final int CL_MEM_CONTEXT = 0x1106
 Define "CL_MEM_CONTEXT" with expression '0x1106', CType: int. More...
 
static final int CL_COMMAND_READ_BUFFER = 0x11f3
 Define "CL_COMMAND_READ_BUFFER" with expression '0x11F3', CType: int. More...
 
static final int CL_FP_ROUND_TO_ZERO = ( 0x1 << 0x3 )
 Define "CL_FP_ROUND_TO_ZERO" with expression '(1 << 3)', CType: int. More...
 
static final int CL_IMAGE_ROW_PITCH = 0x1112
 Define "CL_IMAGE_ROW_PITCH" with expression '0x1112', CType: int. More...
 
static final int CL_DEVICE_WARP_SIZE_NV = 0x4003
 Define "CL_DEVICE_WARP_SIZE_NV" with expression '0x4003', CType: int. More...
 
static final float CL_M_PI_F = 3.14159274101257f
 Define "CL_M_PI_F" with expression '3.14159274101257f', CType: float. More...
 
static final float CL_M_PI_4 = 0.7853981633974483f
 Define "CL_M_PI_4" with expression '0.785398163397448278999', CType: float. More...
 
static final int CL_PLATFORM_EXTENSIONS = 0x904
 Define "CL_PLATFORM_EXTENSIONS" with expression '0x0904', CType: int. More...
 
static final float CL_M_PI_2 = 1.5707963267948966f
 Define "CL_M_PI_2" with expression '1.570796326794896557999', CType: float. More...
 
static final int CL_PROGRAM_CONTEXT = 0x1161
 Define "CL_PROGRAM_CONTEXT" with expression '0x1161', CType: int. More...
 
static final float CL_M_E_F = 2.71828174591064f
 Define "CL_M_E_F" with expression '2.71828174591064f', CType: float. More...
 
static final int CL_COMMAND_READ_BUFFER_RECT = 0x1201
 Define "CL_COMMAND_READ_BUFFER_RECT" with expression '0x1201', CType: int. More...
 
static final float CL_M_SQRT1_2_F = 0.70710676908493f
 Define "CL_M_SQRT1_2_F" with expression '0.70710676908493f', CType: float. More...
 
static final int CL_MEM_MAP_COUNT = 0x1104
 Define "CL_MEM_MAP_COUNT" with expression '0x1104', CType: int. More...
 
static final int CL_DEVICE_IMAGE3D_MAX_WIDTH = 0x1013
 Define "CL_DEVICE_IMAGE3D_MAX_WIDTH" with expression '0x1013', CType: int. More...
 
static final int CL_EVENT_CONTEXT = 0x11d4
 Define "CL_EVENT_CONTEXT" with expression '0x11D4', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_NEXT_FISSIONABLE_EXT = 0x100
 Define "CL_AFFINITY_DOMAIN_NEXT_FISSIONABLE_EXT" with expression '0x100', CType: int. More...
 
static final int CL_DBL_MIN_EXP = -1021
 Define "CL_DBL_MIN_EXP" with expression '-1021', CType: int. More...
 
static final float CL_M_LN2 = 0.6931471805599453f
 Define "CL_M_LN2" with expression '0.693147180559945286227', CType: float. More...
 
static final int CL_SIGNED_INT16 = 0x10d8
 Define "CL_SIGNED_INT16" with expression '0x10D8', CType: int. More...
 
static final float CL_DBL_EPSILON = 2.220446049250313E-16f
 Define "CL_DBL_EPSILON" with expression '0x1.0p-52', CType: float. More...
 
static final int CL_INVALID_COMMAND_QUEUE = -36
 Define "CL_INVALID_COMMAND_QUEUE" with expression '-36', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_INT = 0x1038
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_INT" with expression '0x1038', CType: int. More...
 
static final int CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE = ( 0x1 << 0x0 )
 Define "CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE" with expression '(1 << 0)', CType: int. More...
 
static final float CL_FLT_MAX = 3.4028234663852886E38f
 Define "CL_FLT_MAX" with expression '0x1.fffffep127f', CType: float. More...
 
static final int CL_LUMINANCE = 0x10b9
 Define "CL_LUMINANCE" with expression '0x10B9', CType: int. More...
 
static final int CL_DEVICE_AVAILABLE = 0x1027
 Define "CL_DEVICE_AVAILABLE" with expression '0x1027', CType: int. More...
 
static final int CL_UCHAR_MAX = 0xff
 Define "CL_UCHAR_MAX" with expression '255', CType: int. More...
 
static final int CL_DEVICE_IMAGE_SUPPORT = 0x1016
 Define "CL_DEVICE_IMAGE_SUPPORT" with expression '0x1016', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_HALF = 0x1034
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_HALF" with expression '0x1034', CType: int. More...
 
static final int CL_DEVICE_REGISTERS_PER_BLOCK_NV = 0x4002
 Define "CL_DEVICE_REGISTERS_PER_BLOCK_NV" with expression '0x4002', CType: int. More...
 
static final int CL_GLX_DISPLAY_KHR = 0x200a
 Define "CL_GLX_DISPLAY_KHR" with expression '0x200A', CType: int. More...
 
static final int CL_PROGRAM_NUM_DEVICES = 0x1162
 Define "CL_PROGRAM_NUM_DEVICES" with expression '0x1162', CType: int. More...
 
static final int CL_INVALID_BINARY = -42
 Define "CL_INVALID_BINARY" with expression '-42', CType: int. More...
 
static final int CL_DEVICE_PARENT_DEVICE_EXT = 0x4054
 Define "CL_DEVICE_PARENT_DEVICE_EXT" with expression '0x4054', CType: int. More...
 
static final int CL_MEM_OFFSET = 0x1108
 Define "CL_MEM_OFFSET" with expression '0x1108', CType: int. More...
 
static final int CL_INVALID_ARG_SIZE = -51
 Define "CL_INVALID_ARG_SIZE" with expression '-51', CType: int. More...
 
static final int CL_FLT_DIG = 0x6
 Define "CL_FLT_DIG" with expression '6', CType: int. More...
 
static final float CL_M_LN10 = 2.302585092994046f
 Define "CL_M_LN10" with expression '2.302585092994045901094', CType: float. More...
 
static final int CL_UNSIGNED_INT8 = 0x10da
 Define "CL_UNSIGNED_INT8" with expression '0x10DA', CType: int. More...
 
static final int CL_PROGRAM_BUILD_LOG = 0x1183
 Define "CL_PROGRAM_BUILD_LOG" with expression '0x1183', CType: int. More...
 
static final int CL_INVALID_EVENT_WAIT_LIST = -57
 Define "CL_INVALID_EVENT_WAIT_LIST" with expression '-57', CType: int. More...
 
static final int CL_COMMAND_MARKER = 0x11fe
 Define "CL_COMMAND_MARKER" with expression '0x11FE', CType: int. More...
 
static final int CL_DEVICE_TYPE_DEFAULT = ( 0x1 << 0x0 )
 Define "CL_DEVICE_TYPE_DEFAULT" with expression '(1 << 0)', CType: int. More...
 
static final int CL_SIGNED_INT32 = 0x10d9
 Define "CL_SIGNED_INT32" with expression '0x10D9', CType: int. More...
 
static final int CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE = 0x101d
 Define "CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE" with expression '0x101D', CType: int. More...
 
static final int CL_PLATFORM_NAME = 0x902
 Define "CL_PLATFORM_NAME" with expression '0x0902', CType: int. More...
 
static final int CL_EVENT_COMMAND_TYPE = 0x11d1
 Define "CL_EVENT_COMMAND_TYPE" with expression '0x11D1', CType: int. More...
 
static final int CL_READ_WRITE_CACHE = 0x2
 Define "CL_READ_WRITE_CACHE" with expression '0x2', CType: int. More...
 
static final int CL_BUFFER_CREATE_TYPE_REGION = 0x1220
 Define "CL_BUFFER_CREATE_TYPE_REGION" with expression '0x1220', CType: int. More...
 
static final int CL_RGx = 0x10bb
 Define "CL_RGx" with expression '0x10BB', CType: int. More...
 
static final int CL_PRINTF_BUFFERSIZE_ARM = 0x40b1
 Define "CL_PRINTF_BUFFERSIZE_ARM" with expression '0x40B1', CType: int. More...
 
static final float CL_M_LOG2E_F = 1.44269502162933f
 Define "CL_M_LOG2E_F" with expression '1.44269502162933f', CType: float. More...
 
static final int CL_EVENT_COMMAND_QUEUE = 0x11d0
 Define "CL_EVENT_COMMAND_QUEUE" with expression '0x11D0', CType: int. More...
 
static final float CL_M_LOG10E = 0.4342944819032518f
 Define "CL_M_LOG10E" with expression '0.434294481903251816668', CType: float. More...
 
static final int CL_INVALID_PROGRAM = -44
 Define "CL_INVALID_PROGRAM" with expression '-44', CType: int. More...
 
static final int CL_DEVICE_LOCAL_MEM_SIZE = 0x1023
 Define "CL_DEVICE_LOCAL_MEM_SIZE" with expression '0x1023', CType: int. More...
 
static final int CL_PROGRAM_DEVICES = 0x1163
 Define "CL_PROGRAM_DEVICES" with expression '0x1163', CType: int. More...
 
static final int CL_INVALID_IMAGE_SIZE = -40
 Define "CL_INVALID_IMAGE_SIZE" with expression '-40', CType: int. More...
 
static final int CL_FILTER_NEAREST = 0x1140
 Define "CL_FILTER_NEAREST" with expression '0x1140', CType: int. More...
 
static final int CL_CURRENT_DEVICE_FOR_GL_CONTEXT_KHR = 0x2006
 Define "CL_CURRENT_DEVICE_FOR_GL_CONTEXT_KHR" with expression '0x2006', CType: int. More...
 
static final int CL_DEVICE_PROFILE = 0x102e
 Define "CL_DEVICE_PROFILE" with expression '0x102E', CType: int. More...
 
static final int CL_DEVICE_HOST_UNIFIED_MEMORY = 0x1035
 Define "CL_DEVICE_HOST_UNIFIED_MEMORY" with expression '0x1035', CType: int. More...
 
static final int CL_QUEUE_DEVICE = 0x1091
 Define "CL_QUEUE_DEVICE" with expression '0x1091', CType: int. More...
 
static final int CL_IMAGE_WIDTH = 0x1114
 Define "CL_IMAGE_WIDTH" with expression '0x1114', CType: int. More...
 
static final int CL_SAMPLER_REFERENCE_COUNT = 0x1150
 Define "CL_SAMPLER_REFERENCE_COUNT" with expression '0x1150', CType: int. More...
 
static final int CL_FP_SOFT_FLOAT = ( 0x1 << 0x6 )
 Define "CL_FP_SOFT_FLOAT" with expression '(1 << 6)', CType: int. More...
 
static final int CL_GL_OBJECT_BUFFER = 0x2000
 Define "CL_GL_OBJECT_BUFFER" with expression '0x2000', CType: int. More...
 
static final int CL_INVALID_HOST_PTR = -37
 Define "CL_INVALID_HOST_PTR" with expression '-37', CType: int. More...
 
static final float CL_M_SQRT2 = 1.4142135623730951f
 Define "CL_M_SQRT2" with expression '1.414213562373095145475', CType: float. More...
 
static final int CL_DEVICE_COMPUTE_CAPABILITY_MAJOR_NV = 0x4000
 Define "CL_DEVICE_COMPUTE_CAPABILITY_MAJOR_NV" with expression '0x4000', CType: int. More...
 
static final int CL_SHRT_MIN = ( - 0x7fff - 0x1 )
 Define "CL_SHRT_MIN" with expression '(-32767-1)', CType: int. More...
 
static final int CL_GL_CONTEXT_KHR = 0x2008
 Define "CL_GL_CONTEXT_KHR" with expression '0x2008', CType: int. More...
 
static final int CL_KERNEL_WORK_GROUP_SIZE = 0x11b0
 Define "CL_KERNEL_WORK_GROUP_SIZE" with expression '0x11B0', CType: int. More...
 
static final int CL_MEM_COPY_HOST_PTR = ( 0x1 << 0x5 )
 Define "CL_MEM_COPY_HOST_PTR" with expression '(1 << 5)', CType: int. More...
 
static final int CL_PROGRAM_BINARY_SIZES = 0x1165
 Define "CL_PROGRAM_BINARY_SIZES" with expression '0x1165', CType: int. More...
 
static final int CL_WGL_HDC_KHR = 0x200b
 Define "CL_WGL_HDC_KHR" with expression '0x200B', CType: int. More...
 
static final int CL_INVALID_DEVICE = -33
 Define "CL_INVALID_DEVICE" with expression '-33', CType: int. More...
 
static final long CL_DEVICE_TYPE_ALL = 0xffffffffL
 Define "CL_DEVICE_TYPE_ALL" with expression '0xFFFFFFFF', CType: long. More...
 
static final int CL_INVALID_WORK_DIMENSION = -53
 Define "CL_INVALID_WORK_DIMENSION" with expression '-53', CType: int. More...
 
static final int CL_DEVICE_DOUBLE_FP_CONFIG = 0x1032
 Define "CL_DEVICE_DOUBLE_FP_CONFIG" with expression '0x1032', CType: int. More...
 
static final int CL_DEVICE_NAME = 0x102b
 Define "CL_DEVICE_NAME" with expression '0x102B', CType: int. More...
 
static final int CL_COMMAND_MAP_BUFFER = 0x11fb
 Define "CL_COMMAND_MAP_BUFFER" with expression '0x11FB', CType: int. More...
 
static final int CL_MEM_ASSOCIATED_MEMOBJECT = 0x1107
 Define "CL_MEM_ASSOCIATED_MEMOBJECT" with expression '0x1107', CType: int. More...
 
static final int CL_HALF_FLOAT = 0x10dd
 Define "CL_HALF_FLOAT" with expression '0x10DD', CType: int. More...
 
static final int CL_DEVICE_TYPE_CPU = ( 0x1 << 0x1 )
 Define "CL_DEVICE_TYPE_CPU" with expression '(1 << 1)', CType: int. More...
 
static final int CL_COMMAND_NDRANGE_KERNEL = 0x11f0
 Define "CL_COMMAND_NDRANGE_KERNEL" with expression '0x11F0', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_L2_CACHE_EXT = 0x2
 Define "CL_AFFINITY_DOMAIN_L2_CACHE_EXT" with expression '0x2', CType: int. More...
 
static final int CL_INVALID_PROPERTY = -64
 Define "CL_INVALID_PROPERTY" with expression '-64', CType: int. More...
 
static final int CL_DEVICE_VERSION = 0x102f
 Define "CL_DEVICE_VERSION" with expression '0x102F', CType: int. More...
 
static final int CL_DEVICE_SINGLE_FP_CONFIG = 0x101b
 Define "CL_DEVICE_SINGLE_FP_CONFIG" with expression '0x101B', CType: int. More...
 
static final int CL_QUEUED = 0x3
 Define "CL_QUEUED" with expression '0x3', CType: int. More...
 
static final int CL_DEVICE_MEM_BASE_ADDR_ALIGN = 0x1019
 Define "CL_DEVICE_MEM_BASE_ADDR_ALIGN" with expression '0x1019', CType: int. More...
 
static final int CL_DEVICE_PROFILING_TIMER_OFFSET_AMD = 0x4036
 Define "CL_DEVICE_PROFILING_TIMER_OFFSET_AMD" with expression '0x4036', CType: int. More...
 
static final int CL_INVALID_OPERATION = -59
 Define "CL_INVALID_OPERATION" with expression '-59', CType: int. More...
 
static final int CL_MEM_OBJECT_IMAGE3D = 0x10f2
 Define "CL_MEM_OBJECT_IMAGE3D" with expression '0x10F2', CType: int. More...
 
static final int CL_MEM_ALLOC_HOST_PTR = ( 0x1 << 0x4 )
 Define "CL_MEM_ALLOC_HOST_PTR" with expression '(1 << 4)', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT = 0x1007
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT" with expression '0x1007', CType: int. More...
 
static final int KHRONOS_SUPPORT_INT64 = 0x1
 Define "KHRONOS_SUPPORT_INT64" with expression '1', CType: int. More...
 
static final int CL_DEVICE_MAX_READ_IMAGE_ARGS = 0x100e
 Define "CL_DEVICE_MAX_READ_IMAGE_ARGS" with expression '0x100E', CType: int. More...
 
static final int CL_CONTEXT_DEVICES = 0x1081
 Define "CL_CONTEXT_DEVICES" with expression '0x1081', CType: int. More...
 
static final int CL_KERNEL_REFERENCE_COUNT = 0x1192
 Define "CL_KERNEL_REFERENCE_COUNT" with expression '0x1192', CType: int. More...
 
static final int CL_DEVICE_PARTITION_FAILED_EXT = -1057
 Define "CL_DEVICE_PARTITION_FAILED_EXT" with expression '-1057', CType: int. More...
 
static final int CL_DEVICE_NOT_FOUND = -1
 Define "CL_DEVICE_NOT_FOUND" with expression '-1', CType: int. More...
 
static final int CL_MEM_OBJECT_IMAGE2D = 0x10f1
 Define "CL_MEM_OBJECT_IMAGE2D" with expression '0x10F1', CType: int. More...
 
static final int CL_DEVICE_AFFINITY_DOMAINS_EXT = 0x4056
 Define "CL_DEVICE_AFFINITY_DOMAINS_EXT" with expression '0x4056', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT = 0x1008
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT" with expression '0x1008', CType: int. More...
 
static final int CL_INVALID_KERNEL_DEFINITION = -47
 Define "CL_INVALID_KERNEL_DEFINITION" with expression '-47', CType: int. More...
 
static final float CL_M_2_PI_F = 0.63661974668503f
 Define "CL_M_2_PI_F" with expression '0.63661974668503f', CType: float. More...
 
static final int CL_KERNEL_PRIVATE_MEM_SIZE = 0x11b4
 Define "CL_KERNEL_PRIVATE_MEM_SIZE" with expression '0x11B4', CType: int. More...
 
static final int CL_INVALID_GLOBAL_OFFSET = -56
 Define "CL_INVALID_GLOBAL_OFFSET" with expression '-56', CType: int. More...
 
static final int CL_COMMAND_COPY_BUFFER_RECT = 0x1203
 Define "CL_COMMAND_COPY_BUFFER_RECT" with expression '0x1203', CType: int. More...
 
static final int CL_PLATFORM_ICD_SUFFIX_KHR = 0x920
 Define "CL_PLATFORM_ICD_SUFFIX_KHR" with expression '0x0920', CType: int. More...
 
static final int CL_CONTEXT_PROPERTIES = 0x1082
 Define "CL_CONTEXT_PROPERTIES" with expression '0x1082', CType: int. More...
 
static final int CL_COMMAND_TASK = 0x11f1
 Define "CL_COMMAND_TASK" with expression '0x11F1', CType: int. More...
 
static final int CL_QUEUE_CONTEXT = 0x1090
 Define "CL_QUEUE_CONTEXT" with expression '0x1090', CType: int. More...
 
static final int CL_DEVICE_QUEUE_PROPERTIES = 0x102a
 Define "CL_DEVICE_QUEUE_PROPERTIES" with expression '0x102A', CType: int. More...
 
static final int CL_MEM_OBJECT_BUFFER = 0x10f0
 Define "CL_MEM_OBJECT_BUFFER" with expression '0x10F0', CType: int. More...
 
static final int CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR = -1000
 Define "CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR" with expression '-1000', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_L1_CACHE_EXT = 0x1
 Define "CL_AFFINITY_DOMAIN_L1_CACHE_EXT" with expression '0x1', CType: int. More...
 
static final int CL_INVALID_GL_OBJECT = -60
 Define "CL_INVALID_GL_OBJECT" with expression '-60', CType: int. More...
 
static final int CL_MISALIGNED_SUB_BUFFER_OFFSET = -13
 Define "CL_MISALIGNED_SUB_BUFFER_OFFSET" with expression '-13', CType: int. More...
 
static final int CL_COMMAND_RELEASE_GL_OBJECTS = 0x1200
 Define "CL_COMMAND_RELEASE_GL_OBJECTS" with expression '0x1200', CType: int. More...
 
static final int CL_GL_OBJECT_TEXTURE2D = 0x2001
 Define "CL_GL_OBJECT_TEXTURE2D" with expression '0x2001', CType: int. More...
 
static final int CL_USHRT_MAX = 0xffff
 Define "CL_USHRT_MAX" with expression '65535', CType: int. More...
 
static final int CL_SNORM_INT16 = 0x10d1
 Define "CL_SNORM_INT16" with expression '0x10D1', CType: int. More...
 
static final int CL_INVALID_IMAGE_FORMAT_DESCRIPTOR = -39
 Define "CL_INVALID_IMAGE_FORMAT_DESCRIPTOR" with expression '-39', CType: int. More...
 
static final int CL_CHAR_MIN = ( - 0x7f - 0x1 )
 Define "CL_CHAR_MIN" with expression '(-127-1)', CType: int. More...
 
static final int CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE = 0x1020
 Define "CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE" with expression '0x1020', CType: int. More...
 
static final int CL_DEVICE_MAX_WORK_GROUP_SIZE = 0x1004
 Define "CL_DEVICE_MAX_WORK_GROUP_SIZE" with expression '0x1004', CType: int. More...
 
static final int CL_ADDRESS_MIRRORED_REPEAT = 0x1134
 Define "CL_ADDRESS_MIRRORED_REPEAT" with expression '0x1134', CType: int. More...
 
static final int CL_COMMAND_MAP_IMAGE = 0x11fc
 Define "CL_COMMAND_MAP_IMAGE" with expression '0x11FC', CType: int. More...
 
static final int CL_GLOBAL = 0x2
 Define "CL_GLOBAL" with expression '0x2', CType: int. More...
 
static final int cl_ext_device_fission = 0x1
 Define "cl_ext_device_fission" with expression '1', CType: int. More...
 
static final int CL_INVALID_QUEUE_PROPERTIES = -35
 Define "CL_INVALID_QUEUE_PROPERTIES" with expression '-35', CType: int. More...
 
static final int CL_MEM_REFERENCE_COUNT = 0x1105
 Define "CL_MEM_REFERENCE_COUNT" with expression '0x1105', CType: int. More...
 
static final int CL_GL_OBJECT_TEXTURE3D = 0x2002
 Define "CL_GL_OBJECT_TEXTURE3D" with expression '0x2002', CType: int. More...
 
static final int CL_DRIVER_VERSION = 0x102d
 Define "CL_DRIVER_VERSION" with expression '0x102D', CType: int. More...
 
static final int CL_DEVICE_VENDOR_ID = 0x1001
 Define "CL_DEVICE_VENDOR_ID" with expression '0x1001', CType: int. More...
 
static final int CL_SAMPLER_CONTEXT = 0x1151
 Define "CL_SAMPLER_CONTEXT" with expression '0x1151', CType: int. More...
 
static final int HAS_STDDEF = 0x1
 Define "HAS_STDDEF" with expression '1', CType: int. More...
 
static final int CL_FLT_MAX_10_EXP = 0x26
 Define "CL_FLT_MAX_10_EXP" with expression '+38', CType: int. More...
 
static final float CL_M_LOG10E_F = 0.4342944920063f
 Define "CL_M_LOG10E_F" with expression '0.43429449200630f', CType: float. More...
 
static final int CL_FP_ROUND_TO_NEAREST = ( 0x1 << 0x2 )
 Define "CL_FP_ROUND_TO_NEAREST" with expression '(1 << 2)', CType: int. More...
 
static final int CL_DEVICE_ERROR_CORRECTION_SUPPORT = 0x1024
 Define "CL_DEVICE_ERROR_CORRECTION_SUPPORT" with expression '0x1024', CType: int. More...
 
static final int CL_DEVICE_ENDIAN_LITTLE = 0x1026
 Define "CL_DEVICE_ENDIAN_LITTLE" with expression '0x1026', CType: int. More...
 
static final int CL_EXEC_NATIVE_KERNEL = ( 0x1 << 0x1 )
 Define "CL_EXEC_NATIVE_KERNEL" with expression '(1 << 1)', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF = 0x103c
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF" with expression '0x103C', CType: int. More...
 
static final int CL_COMMAND_WRITE_IMAGE = 0x11f7
 Define "CL_COMMAND_WRITE_IMAGE" with expression '0x11F7', CType: int. More...
 
static final int CL_SCHAR_MIN = ( - 0x7f - 0x1 )
 Define "CL_SCHAR_MIN" with expression '(-127-1)', CType: int. More...
 
static final int CL_OUT_OF_HOST_MEMORY = -6
 Define "CL_OUT_OF_HOST_MEMORY" with expression '-6', CType: int. More...
 
static final float CL_M_LOG2E = 1.4426950408889634f
 Define "CL_M_LOG2E" with expression '1.442695040888963387005', CType: float. More...
 
static final int CL_MEM_READ_WRITE = ( 0x1 << 0x0 )
 Define "CL_MEM_READ_WRITE" with expression '(1 << 0)', CType: int. More...
 
static final int CL_INVALID_MEM_OBJECT = -38
 Define "CL_INVALID_MEM_OBJECT" with expression '-38', CType: int. More...
 
static final int CL_MAP_READ = ( 0x1 << 0x0 )
 Define "CL_MAP_READ" with expression '(1 << 0)', CType: int. More...
 
static final int CL_FALSE = 0x0
 Define "CL_FALSE" with expression '0', CType: int. More...
 
static final int CL_QUEUE_REFERENCE_COUNT = 0x1092
 Define "CL_QUEUE_REFERENCE_COUNT" with expression '0x1092', CType: int. More...
 
static final int CL_DBL_MANT_DIG = 0x35
 Define "CL_DBL_MANT_DIG" with expression '53', CType: int. More...
 
static final int CL_DEVICE_INTEGRATED_MEMORY_NV = 0x4006
 Define "CL_DEVICE_INTEGRATED_MEMORY_NV" with expression '0x4006', CType: int. More...
 
static final int CL_MEM_SIZE = 0x1102
 Define "CL_MEM_SIZE" with expression '0x1102', CType: int. More...
 
- Static Public Attributes inherited from com.jogamp.opencl.llb.CL
static final int KHRONOS_FALSE = 0x0
 Defined as part of enum type "khronos_boolean_enum_t" with expression '0', CType: int. More...
 
static final int KHRONOS_TRUE = 0x1
 Defined as part of enum type "khronos_boolean_enum_t" with expression '1', CType: int. More...
 
static final int KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = 0x7fffffff
 Defined as part of enum type "khronos_boolean_enum_t" with expression '0x7FFFFFFF', CType: int. More...
 
static final int CL_INVALID_WORK_ITEM_SIZE = -55
 Define "CL_INVALID_WORK_ITEM_SIZE" with expression '-55', CType: int. More...
 
static final int CL_INVALID_GLOBAL_WORK_SIZE = -63
 Define "CL_INVALID_GLOBAL_WORK_SIZE" with expression '-63', CType: int. More...
 
static final int CL_BGRA = 0x10b6
 Define "CL_BGRA" with expression '0x10B6', CType: int. More...
 
static final int CL_SNORM_INT8 = 0x10d0
 Define "CL_SNORM_INT8" with expression '0x10D0', CType: int. More...
 
static final int CL_MEM_OBJECT_ALLOCATION_FAILURE = -4
 Define "CL_MEM_OBJECT_ALLOCATION_FAILURE" with expression '-4', CType: int. More...
 
static final int CL_PROGRAM_BUILD_STATUS = 0x1181
 Define "CL_PROGRAM_BUILD_STATUS" with expression '0x1181', CType: int. More...
 
static final int CL_SAMPLER_ADDRESSING_MODE = 0x1153
 Define "CL_SAMPLER_ADDRESSING_MODE" with expression '0x1153', CType: int. More...
 
static final int CL_DEVICE_IMAGE2D_MAX_HEIGHT = 0x1012
 Define "CL_DEVICE_IMAGE2D_MAX_HEIGHT" with expression '0x1012', CType: int. More...
 
static final int CL_DEVICE_TYPE_GPU = ( 0x1 << 0x2 )
 Define "CL_DEVICE_TYPE_GPU" with expression '(1 << 2)', CType: int. More...
 
static final int CL_RGBA = 0x10b5
 Define "CL_RGBA" with expression '0x10B5', CType: int. More...
 
static final int CL_KERNEL_CONTEXT = 0x1193
 Define "CL_KERNEL_CONTEXT" with expression '0x1193', CType: int. More...
 
static final int CL_SAMPLER_FILTER_MODE = 0x1154
 Define "CL_SAMPLER_FILTER_MODE" with expression '0x1154', CType: int. More...
 
static final int CL_DEVICE_IMAGE3D_MAX_HEIGHT = 0x1014
 Define "CL_DEVICE_IMAGE3D_MAX_HEIGHT" with expression '0x1014', CType: int. More...
 
static final int CL_IMAGE_HEIGHT = 0x1115
 Define "CL_IMAGE_HEIGHT" with expression '0x1115', CType: int. More...
 
static final int CL_DBL_MAX_10_EXP = 0x134
 Define "CL_DBL_MAX_10_EXP" with expression '+308', CType: int. More...
 
static final int CL_FLT_MIN_EXP = -125
 Define "CL_FLT_MIN_EXP" with expression '-125', CType: int. More...
 
static final int CL_FP_INF_NAN = ( 0x1 << 0x1 )
 Define "CL_FP_INF_NAN" with expression '(1 << 1)', CType: int. More...
 
static final float CL_M_2_SQRTPI_F = 1.1283792257309f
 Define "CL_M_2_SQRTPI_F" with expression '1.12837922573090f', CType: float. More...
 
static final int CL_PROFILING_INFO_NOT_AVAILABLE = -7
 Define "CL_PROFILING_INFO_NOT_AVAILABLE" with expression '-7', CType: int. More...
 
static final int CL_MEM_READ_ONLY = ( 0x1 << 0x2 )
 Define "CL_MEM_READ_ONLY" with expression '(1 << 2)', CType: int. More...
 
static final int CL_BUILD_PROGRAM_FAILURE = -11
 Define "CL_BUILD_PROGRAM_FAILURE" with expression '-11', CType: int. More...
 
static final int CL_INVALID_KERNEL_ARGS = -52
 Define "CL_INVALID_KERNEL_ARGS" with expression '-52', CType: int. More...
 
static final int CL_SAMPLER_NORMALIZED_COORDS = 0x1152
 Define "CL_SAMPLER_NORMALIZED_COORDS" with expression '0x1152', CType: int. More...
 
static final int CL_DEVICE_IMAGE3D_MAX_DEPTH = 0x1015
 Define "CL_DEVICE_IMAGE3D_MAX_DEPTH" with expression '0x1015', CType: int. More...
 
static final int CL_DEVICE_REFERENCE_COUNT_EXT = 0x4057
 Define "CL_DEVICE_REFERENCE_COUNT_EXT" with expression '0x4057', CType: int. More...
 
static final int CL_INT_MIN = ( - 0x7fffffff - 0x1 )
 Define "CL_INT_MIN" with expression '(-2147483647-1)', CType: int. More...
 
static final int CL_IMAGE_SLICE_PITCH = 0x1113
 Define "CL_IMAGE_SLICE_PITCH" with expression '0x1113', CType: int. More...
 
static final int CL_DEVICES_FOR_GL_CONTEXT_KHR = 0x2007
 Define "CL_DEVICES_FOR_GL_CONTEXT_KHR" with expression '0x2007', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE = 0x100b
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE" with expression '0x100B', CType: int. More...
 
static final int CL_DEVICE_TYPE = 0x1000
 Define "CL_DEVICE_TYPE" with expression '0x1000', CType: int. More...
 
static final int CL_MEM_HOST_PTR = 0x1103
 Define "CL_MEM_HOST_PTR" with expression '0x1103', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_NUMA_EXT = 0x10
 Define "CL_AFFINITY_DOMAIN_NUMA_EXT" with expression '0x10', CType: int. More...
 
static final int CL_DEVICE_PROFILING_TIMER_RESOLUTION = 0x1025
 Define "CL_DEVICE_PROFILING_TIMER_RESOLUTION" with expression '0x1025', CType: int. More...
 
static final int CL_ADDRESS_NONE = 0x1130
 Define "CL_ADDRESS_NONE" with expression '0x1130', CType: int. More...
 
static final int CL_INVALID_PARTITION_NAME_EXT = -1059
 Define "CL_INVALID_PARTITION_NAME_EXT" with expression '-1059', CType: int. More...
 
static final int CL_DBL_DIG = 0xf
 Define "CL_DBL_DIG" with expression '15', CType: int. More...
 
static final int CL_PROGRAM_BINARIES = 0x1166
 Define "CL_PROGRAM_BINARIES" with expression '0x1166', CType: int. More...
 
static final int CL_INVALID_MIP_LEVEL = -62
 Define "CL_INVALID_MIP_LEVEL" with expression '-62', CType: int. More...
 
static final int CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV = 0x4001
 Define "CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV" with expression '0x4001', CType: int. More...
 
static final int CL_DBL_RADIX = 0x2
 Define "CL_DBL_RADIX" with expression '2', CType: int. More...
 
static final int CL_DEVICE_MAX_COMPUTE_UNITS = 0x1002
 Define "CL_DEVICE_MAX_COMPUTE_UNITS" with expression '0x1002', CType: int. More...
 
static final int CL_UNORM_INT_101010 = 0x10d6
 Define "CL_UNORM_INT_101010" with expression '0x10D6', CType: int. More...
 
static final int CL_ADDRESS_CLAMP = 0x1132
 Define "CL_ADDRESS_CLAMP" with expression '0x1132', CType: int. More...
 
static final int CL_COMMAND_COPY_BUFFER = 0x11f5
 Define "CL_COMMAND_COPY_BUFFER" with expression '0x11F5', CType: int. More...
 
static final int CL_INVALID_ARG_INDEX = -49
 Define "CL_INVALID_ARG_INDEX" with expression '-49', CType: int. More...
 
static final int CL_FILTER_LINEAR = 0x1141
 Define "CL_FILTER_LINEAR" with expression '0x1141', CType: int. More...
 
static final int CL_PROGRAM_REFERENCE_COUNT = 0x1160
 Define "CL_PROGRAM_REFERENCE_COUNT" with expression '0x1160', CType: int. More...
 
static final float CL_M_2_PI = 0.6366197723675814f
 Define "CL_M_2_PI" with expression '0.636619772367581382433', CType: float. More...
 
static final int CL_FLOAT = 0x10de
 Define "CL_FLOAT" with expression '0x10DE', CType: int. More...
 
static final int CL_DEVICE_KERNEL_EXEC_TIMEOUT_NV = 0x4005
 Define "CL_DEVICE_KERNEL_EXEC_TIMEOUT_NV" with expression '0x4005', CType: int. More...
 
static final int CL_KERNEL_NUM_ARGS = 0x1191
 Define "CL_KERNEL_NUM_ARGS" with expression '0x1191', CType: int. More...
 
static final int CL_PLATFORM_VERSION = 0x901
 Define "CL_PLATFORM_VERSION" with expression '0x0901', CType: int. More...
 
static final int CL_OUT_OF_RESOURCES = -5
 Define "CL_OUT_OF_RESOURCES" with expression '-5', CType: int. More...
 
static final int CL_VERSION_1_1 = 0x1
 Define "CL_VERSION_1_1" with expression '1', CType: int. More...
 
static final int CL_VERSION_1_0 = 0x1
 Define "CL_VERSION_1_0" with expression '1', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT = 0x100a
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT" with expression '0x100A', CType: int. More...
 
static final int CL_INVALID_PLATFORM = -32
 Define "CL_INVALID_PLATFORM" with expression '-32', CType: int. More...
 
static final float CL_M_PI_2_F = 1.57079637050629f
 Define "CL_M_PI_2_F" with expression '1.57079637050629f', CType: float. More...
 
static final int CL_PROGRAM_BUILD_OPTIONS = 0x1182
 Define "CL_PROGRAM_BUILD_OPTIONS" with expression '0x1182', CType: int. More...
 
static final int CL_BUILD_NONE = -1
 Define "CL_BUILD_NONE" with expression '-1', CType: int. More...
 
static final int CL_RUNNING = 0x1
 Define "CL_RUNNING" with expression '0x1', CType: int. More...
 
static final int CL_INVALID_KERNEL = -48
 Define "CL_INVALID_KERNEL" with expression '-48', CType: int. More...
 
static final int CL_IMAGE_FORMAT_NOT_SUPPORTED = -10
 Define "CL_IMAGE_FORMAT_NOT_SUPPORTED" with expression '-10', CType: int. More...
 
static final int CL_CHAR_MAX = 0x7f
 Define "CL_CHAR_MAX" with expression '127', CType: int. More...
 
static final int CL_QUEUE_PROFILING_ENABLE = ( 0x1 << 0x1 )
 Define "CL_QUEUE_PROFILING_ENABLE" with expression '(1 << 1)', CType: int. More...
 
static final float CL_M_LN10_F = 2.30258512496948f
 Define "CL_M_LN10_F" with expression '2.30258512496948f', CType: float. More...
 
static final int CL_IMAGE_DEPTH = 0x1116
 Define "CL_IMAGE_DEPTH" with expression '0x1116', CType: int. More...
 
static final int CL_UNORM_INT16 = 0x10d3
 Define "CL_UNORM_INT16" with expression '0x10D3', CType: int. More...
 
static final int CL_MAP_WRITE = ( 0x1 << 0x1 )
 Define "CL_MAP_WRITE" with expression '(1 << 1)', CType: int. More...
 
static final int CL_SCHAR_MAX = 0x7f
 Define "CL_SCHAR_MAX" with expression '127', CType: int. More...
 
static final int GLEXT_64_TYPES_DEFINED = 0x1
 Define "GLEXT_64_TYPES_DEFINED" with expression '1', CType: int. More...
 
static final int CL_PROFILING_COMMAND_END = 0x1283
 Define "CL_PROFILING_COMMAND_END" with expression '0x1283', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG = 0x1009
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG" with expression '0x1009', CType: int. More...
 
static final int CL_CHAR_BIT = 0x8
 Define "CL_CHAR_BIT" with expression '8', CType: int. More...
 
static final int CL_MEM_WRITE_ONLY = ( 0x1 << 0x1 )
 Define "CL_MEM_WRITE_ONLY" with expression '(1 << 1)', CType: int. More...
 
static final int CL_RGBx = 0x10bc
 Define "CL_RGBx" with expression '0x10BC', CType: int. More...
 
static final int CL_MAP_FAILURE = -12
 Define "CL_MAP_FAILURE" with expression '-12', CType: int. More...
 
static final int CL_MEM_COPY_OVERLAP = -8
 Define "CL_MEM_COPY_OVERLAP" with expression '-8', CType: int. More...
 
static final int CL_DBL_MIN_10_EXP = -307
 Define "CL_DBL_MIN_10_EXP" with expression '-307', CType: int. More...
 
static final int CL_PROFILING_COMMAND_SUBMIT = 0x1281
 Define "CL_PROFILING_COMMAND_SUBMIT" with expression '0x1281', CType: int. More...
 
static final float CL_M_1_PI = 0.3183098861837907f
 Define "CL_M_1_PI" with expression '0.318309886183790691216', CType: float. More...
 
static final int CL_QUEUE_PROPERTIES = 0x1093
 Define "CL_QUEUE_PROPERTIES" with expression '0x1093', CType: int. More...
 
static final int CL_PROFILING_COMMAND_QUEUED = 0x1280
 Define "CL_PROFILING_COMMAND_QUEUED" with expression '0x1280', CType: int. More...
 
static final int CL_INVALID_PROGRAM_EXECUTABLE = -45
 Define "CL_INVALID_PROGRAM_EXECUTABLE" with expression '-45', CType: int. More...
 
static final int KHRONOS_MAX_ENUM = 0x7fffffff
 Define "KHRONOS_MAX_ENUM" with expression '0x7FFFFFFF', CType: int. More...
 
static final float CL_MAXFLOAT = 3.4028234663852886E38f
 Define "CL_MAXFLOAT" with expression '0x1.fffffep127f', CType: float. More...
 
static final int CL_COMMAND_NATIVE_KERNEL = 0x11f2
 Define "CL_COMMAND_NATIVE_KERNEL" with expression '0x11F2', CType: int. More...
 
static final int CL_ADDRESS_REPEAT = 0x1133
 Define "CL_ADDRESS_REPEAT" with expression '0x1133', CType: int. More...
 
static final int CL_TRUE = 0x1
 Define "CL_TRUE" with expression '1', CType: int. More...
 
static final int CL_KERNEL_LOCAL_MEM_SIZE = 0x11b2
 Define "CL_KERNEL_LOCAL_MEM_SIZE" with expression '0x11B2', CType: int. More...
 
static final float CL_FLT_EPSILON = 1.1920928955078125E-7f
 Define "CL_FLT_EPSILON" with expression '0x1.0p-23f', CType: float. More...
 
static final int CL_DEVICE_GPU_OVERLAP_NV = 0x4004
 Define "CL_DEVICE_GPU_OVERLAP_NV" with expression '0x4004', CType: int. More...
 
static final int CL_DEVICE_PARTITION_TYPES_EXT = 0x4055
 Define "CL_DEVICE_PARTITION_TYPES_EXT" with expression '0x4055', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT = 0x1037
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT" with expression '0x1037', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_L3_CACHE_EXT = 0x3
 Define "CL_AFFINITY_DOMAIN_L3_CACHE_EXT" with expression '0x3', CType: int. More...
 
static final double CL_DBL_MAX = 1.7976931348623157E308
 Define "CL_DBL_MAX" with expression '0x1.fffffffffffffp1023', CType: double. More...
 
static final int CL_SUBMITTED = 0x2
 Define "CL_SUBMITTED" with expression '0x2', CType: int. More...
 
static final int CL_PROGRAM_SOURCE = 0x1164
 Define "CL_PROGRAM_SOURCE" with expression '0x1164', CType: int. More...
 
static final int CL_DEVICE_LOCAL_MEM_TYPE = 0x1022
 Define "CL_DEVICE_LOCAL_MEM_TYPE" with expression '0x1022', CType: int. More...
 
static final float CL_M_PI_4_F = 0.78539818525314f
 Define "CL_M_PI_4_F" with expression '0.78539818525314f', CType: float. More...
 
static final int CL_PLATFORM_VENDOR = 0x903
 Define "CL_PLATFORM_VENDOR" with expression '0x0903', CType: int. More...
 
static final int CL_COMMAND_USER = 0x1204
 Define "CL_COMMAND_USER" with expression '0x1204', CType: int. More...
 
static final int CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST = -14
 Define "CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST" with expression '-14', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG = 0x1039
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG" with expression '0x1039', CType: int. More...
 
static final int CL_DEVICE_PARTITION_BY_NAMES_EXT = 0x4052
 Define "CL_DEVICE_PARTITION_BY_NAMES_EXT" with expression '0x4052', CType: int. More...
 
static final int CL_COMMAND_COPY_BUFFER_TO_IMAGE = 0x11fa
 Define "CL_COMMAND_COPY_BUFFER_TO_IMAGE" with expression '0x11FA', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE = 0x103b
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE" with expression '0x103B', CType: int. More...
 
static final int CL_BUILD_IN_PROGRESS = -3
 Define "CL_BUILD_IN_PROGRESS" with expression '-3', CType: int. More...
 
static final int CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE = 0x11b3
 Define "CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE" with expression '0x11B3', CType: int. More...
 
static final int KHRONOS_SUPPORT_FLOAT = 0x1
 Define "KHRONOS_SUPPORT_FLOAT" with expression '1', CType: int. More...
 
static final int CL_INVALID_SAMPLER = -41
 Define "CL_INVALID_SAMPLER" with expression '-41', CType: int. More...
 
static final int CL_DEVICE_VENDOR = 0x102c
 Define "CL_DEVICE_VENDOR" with expression '0x102C', CType: int. More...
 
static final int CL_COMMAND_WRITE_BUFFER = 0x11f4
 Define "CL_COMMAND_WRITE_BUFFER" with expression '0x11F4', CType: int. More...
 
static final int CL_BUILD_SUCCESS = 0x0
 Define "CL_BUILD_SUCCESS" with expression '0', CType: int. More...
 
static final int CL_COMMAND_UNMAP_MEM_OBJECT = 0x11fd
 Define "CL_COMMAND_UNMAP_MEM_OBJECT" with expression '0x11FD', CType: int. More...
 
static final float CL_M_SQRT2_F = 1.41421353816986f
 Define "CL_M_SQRT2_F" with expression '1.41421353816986f', CType: float. More...
 
static final int CL_MEM_FLAGS = 0x1101
 Define "CL_MEM_FLAGS" with expression '0x1101', CType: int. More...
 
static final int CL_FLT_MIN_10_EXP = -37
 Define "CL_FLT_MIN_10_EXP" with expression '-37', CType: int. More...
 
static final int CL_INVALID_CONTEXT = -34
 Define "CL_INVALID_CONTEXT" with expression '-34', CType: int. More...
 
static final int CL_DEVICE_MAX_WRITE_IMAGE_ARGS = 0x100f
 Define "CL_DEVICE_MAX_WRITE_IMAGE_ARGS" with expression '0x100F', CType: int. More...
 
static final float CL_M_E = 2.718281828459045f
 Define "CL_M_E" with expression '2.718281828459045090796', CType: float. More...
 
static final int CL_LOCAL = 0x1
 Define "CL_LOCAL" with expression '0x1', CType: int. More...
 
static final int CL_DEVICE_EXECUTION_CAPABILITIES = 0x1029
 Define "CL_DEVICE_EXECUTION_CAPABILITIES" with expression '0x1029', CType: int. More...
 
static final int CL_EXEC_KERNEL = ( 0x1 << 0x0 )
 Define "CL_EXEC_KERNEL" with expression '(1 << 0)', CType: int. More...
 
static final int CL_INT_MAX = 0x7fffffff
 Define "CL_INT_MAX" with expression '2147483647', CType: int. More...
 
static final int CL_FP_DENORM = ( 0x1 << 0x0 )
 Define "CL_FP_DENORM" with expression '(1 << 0)', CType: int. More...
 
static final float CL_FLT_MIN = 1.1754943508222875E-38f
 Define "CL_FLT_MIN" with expression '0x1.0p-126f', CType: float. More...
 
static final int CL_DBL_MAX_EXP = 0x400
 Define "CL_DBL_MAX_EXP" with expression '+1024', CType: int. More...
 
static final int CL_RGB = 0x10b4
 Define "CL_RGB" with expression '0x10B4', CType: int. More...
 
static final int CL_DEVICE_GLOBAL_MEM_CACHE_TYPE = 0x101c
 Define "CL_DEVICE_GLOBAL_MEM_CACHE_TYPE" with expression '0x101C', CType: int. More...
 
static final int CL_DEVICE_MAX_SAMPLERS = 0x1018
 Define "CL_DEVICE_MAX_SAMPLERS" with expression '0x1018', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_L4_CACHE_EXT = 0x4
 Define "CL_AFFINITY_DOMAIN_L4_CACHE_EXT" with expression '0x4', CType: int. More...
 
static final float CL_M_SQRT1_2 = 0.7071067811865476f
 Define "CL_M_SQRT1_2" with expression '0.707106781186547572737', CType: float. More...
 
static final int CL_DEVICE_HALF_FP_CONFIG = 0x1033
 Define "CL_DEVICE_HALF_FP_CONFIG" with expression '0x1033', CType: int. More...
 
static final int CL_DEVICE_TYPE_ACCELERATOR = ( 0x1 << 0x3 )
 Define "CL_DEVICE_TYPE_ACCELERATOR" with expression '(1 << 3)', CType: int. More...
 
static final int CL_DEVICE_COMPILER_AVAILABLE = 0x1028
 Define "CL_DEVICE_COMPILER_AVAILABLE" with expression '0x1028', CType: int. More...
 
static final int CL_COMMAND_ACQUIRE_GL_OBJECTS = 0x11ff
 Define "CL_COMMAND_ACQUIRE_GL_OBJECTS" with expression '0x11FF', CType: int. More...
 
static final int CL_INVALID_PARTITION_COUNT_EXT = -1058
 Define "CL_INVALID_PARTITION_COUNT_EXT" with expression '-1058', CType: int. More...
 
static final int CL_MEM_USE_HOST_PTR = ( 0x1 << 0x3 )
 Define "CL_MEM_USE_HOST_PTR" with expression '(1 << 3)', CType: int. More...
 
static final int CL_DEVICE_IMAGE2D_MAX_WIDTH = 0x1011
 Define "CL_DEVICE_IMAGE2D_MAX_WIDTH" with expression '0x1011', CType: int. More...
 
static final int CL_EVENT_COMMAND_EXECUTION_STATUS = 0x11d3
 Define "CL_EVENT_COMMAND_EXECUTION_STATUS" with expression '0x11D3', CType: int. More...
 
static final int CL_DEVICE_PLATFORM = 0x1031
 Define "CL_DEVICE_PLATFORM" with expression '0x1031', CType: int. More...
 
static final int CL_INVALID_ARG_VALUE = -50
 Define "CL_INVALID_ARG_VALUE" with expression '-50', CType: int. More...
 
static final int CL_DEVICE_MAX_MEM_ALLOC_SIZE = 0x1010
 Define "CL_DEVICE_MAX_MEM_ALLOC_SIZE" with expression '0x1010', CType: int. More...
 
static final int CL_INVALID_DEVICE_TYPE = -31
 Define "CL_INVALID_DEVICE_TYPE" with expression '-31', CType: int. More...
 
static final int CL_SUCCESS = 0x0
 Define "CL_SUCCESS" with expression '0', CType: int. More...
 
static final int CL_UNORM_SHORT_565 = 0x10d4
 Define "CL_UNORM_SHORT_565" with expression '0x10D4', CType: int. More...
 
static final int CL_DEVICE_PARTITION_EQUALLY_EXT = 0x4050
 Define "CL_DEVICE_PARTITION_EQUALLY_EXT" with expression '0x4050', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT = 0x103a
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT" with expression '0x103A', CType: int. More...
 
static final int CL_IMAGE_FORMAT = 0x1110
 Define "CL_IMAGE_FORMAT" with expression '0x1110', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR = 0x1006
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR" with expression '0x1006', CType: int. More...
 
static final int CL_IMAGE_ELEMENT_SIZE = 0x1111
 Define "CL_IMAGE_ELEMENT_SIZE" with expression '0x1111', CType: int. More...
 
static final int CL_PROFILING_COMMAND_START = 0x1282
 Define "CL_PROFILING_COMMAND_START" with expression '0x1282', CType: int. More...
 
static final int CL_INVALID_BUILD_OPTIONS = -43
 Define "CL_INVALID_BUILD_OPTIONS" with expression '-43', CType: int. More...
 
static final int CL_COMMAND_WRITE_BUFFER_RECT = 0x1202
 Define "CL_COMMAND_WRITE_BUFFER_RECT" with expression '0x1202', CType: int. More...
 
static final float CL_M_LN2_F = 0.6931471824646f
 Define "CL_M_LN2_F" with expression '0.69314718246460f', CType: float. More...
 
static final int CL_INVALID_VALUE = -30
 Define "CL_INVALID_VALUE" with expression '-30', CType: int. More...
 
static final int CL_CONTEXT_NUM_DEVICES = 0x1083
 Define "CL_CONTEXT_NUM_DEVICES" with expression '0x1083', CType: int. More...
 
static final int CL_ARGB = 0x10b7
 Define "CL_ARGB" with expression '0x10B7', CType: int. More...
 
static final int CL_DEVICE_MAX_CLOCK_FREQUENCY = 0x100c
 Define "CL_DEVICE_MAX_CLOCK_FREQUENCY" with expression '0x100C', CType: int. More...
 
static final int CL_SIGNED_INT8 = 0x10d7
 Define "CL_SIGNED_INT8" with expression '0x10D7', CType: int. More...
 
static final int CL_COMPLETE = 0x0
 Define "CL_COMPLETE" with expression '0x0', CType: int. More...
 
static final int CL_FP_FMA = ( 0x1 << 0x5 )
 Define "CL_FP_FMA" with expression '(1 << 5)', CType: int. More...
 
static final int CL_INTENSITY = 0x10b8
 Define "CL_INTENSITY" with expression '0x10B8', CType: int. More...
 
static final int CL_DEVICE_PARTITION_STYLE_EXT = 0x4058
 Define "CL_DEVICE_PARTITION_STYLE_EXT" with expression '0x4058', CType: int. More...
 
static final int CL_DEVICE_NOT_AVAILABLE = -2
 Define "CL_DEVICE_NOT_AVAILABLE" with expression '-2', CType: int. More...
 
static final int CL_DEVICE_MAX_PARAMETER_SIZE = 0x1017
 Define "CL_DEVICE_MAX_PARAMETER_SIZE" with expression '0x1017', CType: int. More...
 
static final int CL_IMAGE_FORMAT_MISMATCH = -9
 Define "CL_IMAGE_FORMAT_MISMATCH" with expression '-9', CType: int. More...
 
static final int CL_KERNEL_FUNCTION_NAME = 0x1190
 Define "CL_KERNEL_FUNCTION_NAME" with expression '0x1190', CType: int. More...
 
static final int CL_PLATFORM_NOT_FOUND_KHR = -1001
 Define "CL_PLATFORM_NOT_FOUND_KHR" with expression '-1001', CType: int. More...
 
static final int cl_khr_icd = 0x1
 Define "cl_khr_icd" with expression '1', CType: int. More...
 
static final int CL_INVALID_BUFFER_SIZE = -61
 Define "CL_INVALID_BUFFER_SIZE" with expression '-61', CType: int. More...
 
static final int CL_DEVICE_EXTENSIONS = 0x1030
 Define "CL_DEVICE_EXTENSIONS" with expression '0x1030', CType: int. More...
 
static final int CL_DEVICE_PARTITION_BY_COUNTS_EXT = 0x4051
 Define "CL_DEVICE_PARTITION_BY_COUNTS_EXT" with expression '0x4051', CType: int. More...
 
static final int CL_FLT_MAX_EXP = 0x80
 Define "CL_FLT_MAX_EXP" with expression '+128', CType: int. More...
 
static final int CL_COMMAND_READ_IMAGE = 0x11f6
 Define "CL_COMMAND_READ_IMAGE" with expression '0x11F6', CType: int. More...
 
static final int CL_UNSIGNED_INT32 = 0x10dc
 Define "CL_UNSIGNED_INT32" with expression '0x10DC', CType: int. More...
 
static final int CL_COMPILER_NOT_AVAILABLE = -3
 Define "CL_COMPILER_NOT_AVAILABLE" with expression '-3', CType: int. More...
 
static final int CL_R = 0x10b0
 Define "CL_R" with expression '0x10B0', CType: int. More...
 
static final int CL_GL_OBJECT_RENDERBUFFER = 0x2003
 Define "CL_GL_OBJECT_RENDERBUFFER" with expression '0x2003', CType: int. More...
 
static final int CL_UNSIGNED_INT16 = 0x10db
 Define "CL_UNSIGNED_INT16" with expression '0x10DB', CType: int. More...
 
static final int CL_INVALID_EVENT = -58
 Define "CL_INVALID_EVENT" with expression '-58', CType: int. More...
 
static final int CL_UNORM_INT8 = 0x10d2
 Define "CL_UNORM_INT8" with expression '0x10D2', CType: int. More...
 
static final int CL_KERNEL_PROGRAM = 0x1194
 Define "CL_KERNEL_PROGRAM" with expression '0x1194', CType: int. More...
 
static final int CL_PLATFORM_PROFILE = 0x900
 Define "CL_PLATFORM_PROFILE" with expression '0x0900', CType: int. More...
 
static final int CL_READ_ONLY_CACHE = 0x1
 Define "CL_READ_ONLY_CACHE" with expression '0x1', CType: int. More...
 
static final int CL_EVENT_REFERENCE_COUNT = 0x11d2
 Define "CL_EVENT_REFERENCE_COUNT" with expression '0x11D2', CType: int. More...
 
static final int CL_A = 0x10b1
 Define "CL_A" with expression '0x10B1', CType: int. More...
 
static final int CL_GL_MIPMAP_LEVEL = 0x2005
 Define "CL_GL_MIPMAP_LEVEL" with expression '0x2005', CType: int. More...
 
static final int CL_PRINTF_CALLBACK_ARM = 0x40b0
 Define "CL_PRINTF_CALLBACK_ARM" with expression '0x40B0', CType: int. More...
 
static final int CL_SHRT_MAX = 0x7fff
 Define "CL_SHRT_MAX" with expression '32767', CType: int. More...
 
static final int CL_UNORM_SHORT_555 = 0x10d5
 Define "CL_UNORM_SHORT_555" with expression '0x10D5', CType: int. More...
 
static final int CL_CONTEXT_PLATFORM = 0x1084
 Define "CL_CONTEXT_PLATFORM" with expression '0x1084', CType: int. More...
 
static final int CL_DEVICE_MAX_WORK_ITEM_SIZES = 0x1005
 Define "CL_DEVICE_MAX_WORK_ITEM_SIZES" with expression '0x1005', CType: int. More...
 
static final int CL_EGL_DISPLAY_KHR = 0x2009
 Define "CL_EGL_DISPLAY_KHR" with expression '0x2009', CType: int. More...
 
static final float CL_M_2_SQRTPI = 1.1283791670955126f
 Define "CL_M_2_SQRTPI" with expression '1.128379167095512558561', CType: float. More...
 
static final int CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS = 0x1003
 Define "CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS" with expression '0x1003', CType: int. More...
 
static final int CL_GL_TEXTURE_TARGET = 0x2004
 Define "CL_GL_TEXTURE_TARGET" with expression '0x2004', CType: int. More...
 
static final int CL_DEVICE_OPENCL_C_VERSION = 0x103d
 Define "CL_DEVICE_OPENCL_C_VERSION" with expression '0x103D', CType: int. More...
 
static final int CL_MEM_TYPE = 0x1100
 Define "CL_MEM_TYPE" with expression '0x1100', CType: int. More...
 
static final int CL_INVALID_WORK_GROUP_SIZE = -54
 Define "CL_INVALID_WORK_GROUP_SIZE" with expression '-54', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR = 0x1036
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR" with expression '0x1036', CType: int. More...
 
static final int CL_DEVICE_PARTITION_BY_AFFINITY_DOMAIN_EXT = 0x4053
 Define "CL_DEVICE_PARTITION_BY_AFFINITY_DOMAIN_EXT" with expression '0x4053', CType: int. More...
 
static final int CL_COMMAND_COPY_IMAGE = 0x11f8
 Define "CL_COMMAND_COPY_IMAGE" with expression '0x11F8', CType: int. More...
 
static final int CL_FP_ROUND_TO_INF = ( 0x1 << 0x4 )
 Define "CL_FP_ROUND_TO_INF" with expression '(1 << 4)', CType: int. More...
 
static final float CL_M_PI = 3.141592653589793f
 Define "CL_M_PI" with expression '3.141592653589793115998', CType: float. More...
 
static final int CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE = 0x101a
 Define "CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE" with expression '0x101A', CType: int. More...
 
static final int CL_RA = 0x10b3
 Define "CL_RA" with expression '0x10B3', CType: int. More...
 
static final int CL_FLT_MANT_DIG = 0x18
 Define "CL_FLT_MANT_DIG" with expression '24', CType: int. More...
 
static final double CL_DBL_MIN = 2.2250738585072014E-308
 Define "CL_DBL_MIN" with expression '0x1.0p-1022', CType: double. More...
 
static final int CL_COMMAND_COPY_IMAGE_TO_BUFFER = 0x11f9
 Define "CL_COMMAND_COPY_IMAGE_TO_BUFFER" with expression '0x11F9', CType: int. More...
 
static final int cl_khr_gl_sharing = 0x1
 Define "cl_khr_gl_sharing" with expression '1', CType: int. More...
 
static final int CL_DEVICE_MAX_CONSTANT_ARGS = 0x1021
 Define "CL_DEVICE_MAX_CONSTANT_ARGS" with expression '0x1021', CType: int. More...
 
static final int CL_DEVICE_GLOBAL_MEM_SIZE = 0x101f
 Define "CL_DEVICE_GLOBAL_MEM_SIZE" with expression '0x101F', CType: int. More...
 
static final int CL_NONE = 0x0
 Define "CL_NONE" with expression '0x0', CType: int. More...
 
static final int CL_CONTEXT_REFERENCE_COUNT = 0x1080
 Define "CL_CONTEXT_REFERENCE_COUNT" with expression '0x1080', CType: int. More...
 
static final int CL_RG = 0x10b2
 Define "CL_RG" with expression '0x10B2', CType: int. More...
 
static final int CL_FLT_RADIX = 0x2
 Define "CL_FLT_RADIX" with expression '2', CType: int. More...
 
static final int CL_KERNEL_COMPILE_WORK_GROUP_SIZE = 0x11b1
 Define "CL_KERNEL_COMPILE_WORK_GROUP_SIZE" with expression '0x11B1', CType: int. More...
 
static final float CL_M_1_PI_F = 0.31830987334251f
 Define "CL_M_1_PI_F" with expression '0.31830987334251f', CType: float. More...
 
static final int CL_DEVICE_ADDRESS_BITS = 0x100d
 Define "CL_DEVICE_ADDRESS_BITS" with expression '0x100D', CType: int. More...
 
static final int CL_CGL_SHAREGROUP_KHR = 0x200c
 Define "CL_CGL_SHAREGROUP_KHR" with expression '0x200C', CType: int. More...
 
static final int CL_Rx = 0x10ba
 Define "CL_Rx" with expression '0x10BA', CType: int. More...
 
static final int CL_INVALID_KERNEL_NAME = -46
 Define "CL_INVALID_KERNEL_NAME" with expression '-46', CType: int. More...
 
static final int CL_BUILD_ERROR = -2
 Define "CL_BUILD_ERROR" with expression '-2', CType: int. More...
 
static final int CL_ADDRESS_CLAMP_TO_EDGE = 0x1131
 Define "CL_ADDRESS_CLAMP_TO_EDGE" with expression '0x1131', CType: int. More...
 
static final int CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR = 0x200d
 Define "CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR" with expression '0x200D', CType: int. More...
 
static final int CL_DEVICE_GLOBAL_MEM_CACHE_SIZE = 0x101e
 Define "CL_DEVICE_GLOBAL_MEM_CACHE_SIZE" with expression '0x101E', CType: int. More...
 
static final int CL_MEM_CONTEXT = 0x1106
 Define "CL_MEM_CONTEXT" with expression '0x1106', CType: int. More...
 
static final int CL_COMMAND_READ_BUFFER = 0x11f3
 Define "CL_COMMAND_READ_BUFFER" with expression '0x11F3', CType: int. More...
 
static final int CL_FP_ROUND_TO_ZERO = ( 0x1 << 0x3 )
 Define "CL_FP_ROUND_TO_ZERO" with expression '(1 << 3)', CType: int. More...
 
static final int CL_IMAGE_ROW_PITCH = 0x1112
 Define "CL_IMAGE_ROW_PITCH" with expression '0x1112', CType: int. More...
 
static final int CL_DEVICE_WARP_SIZE_NV = 0x4003
 Define "CL_DEVICE_WARP_SIZE_NV" with expression '0x4003', CType: int. More...
 
static final float CL_M_PI_F = 3.14159274101257f
 Define "CL_M_PI_F" with expression '3.14159274101257f', CType: float. More...
 
static final float CL_M_PI_4 = 0.7853981633974483f
 Define "CL_M_PI_4" with expression '0.785398163397448278999', CType: float. More...
 
static final int CL_PLATFORM_EXTENSIONS = 0x904
 Define "CL_PLATFORM_EXTENSIONS" with expression '0x0904', CType: int. More...
 
static final float CL_M_PI_2 = 1.5707963267948966f
 Define "CL_M_PI_2" with expression '1.570796326794896557999', CType: float. More...
 
static final int CL_PROGRAM_CONTEXT = 0x1161
 Define "CL_PROGRAM_CONTEXT" with expression '0x1161', CType: int. More...
 
static final float CL_M_E_F = 2.71828174591064f
 Define "CL_M_E_F" with expression '2.71828174591064f', CType: float. More...
 
static final int CL_COMMAND_READ_BUFFER_RECT = 0x1201
 Define "CL_COMMAND_READ_BUFFER_RECT" with expression '0x1201', CType: int. More...
 
static final float CL_M_SQRT1_2_F = 0.70710676908493f
 Define "CL_M_SQRT1_2_F" with expression '0.70710676908493f', CType: float. More...
 
static final int CL_MEM_MAP_COUNT = 0x1104
 Define "CL_MEM_MAP_COUNT" with expression '0x1104', CType: int. More...
 
static final int CL_DEVICE_IMAGE3D_MAX_WIDTH = 0x1013
 Define "CL_DEVICE_IMAGE3D_MAX_WIDTH" with expression '0x1013', CType: int. More...
 
static final int CL_EVENT_CONTEXT = 0x11d4
 Define "CL_EVENT_CONTEXT" with expression '0x11D4', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_NEXT_FISSIONABLE_EXT = 0x100
 Define "CL_AFFINITY_DOMAIN_NEXT_FISSIONABLE_EXT" with expression '0x100', CType: int. More...
 
static final int CL_DBL_MIN_EXP = -1021
 Define "CL_DBL_MIN_EXP" with expression '-1021', CType: int. More...
 
static final float CL_M_LN2 = 0.6931471805599453f
 Define "CL_M_LN2" with expression '0.693147180559945286227', CType: float. More...
 
static final int CL_SIGNED_INT16 = 0x10d8
 Define "CL_SIGNED_INT16" with expression '0x10D8', CType: int. More...
 
static final float CL_DBL_EPSILON = 2.220446049250313E-16f
 Define "CL_DBL_EPSILON" with expression '0x1.0p-52', CType: float. More...
 
static final int CL_INVALID_COMMAND_QUEUE = -36
 Define "CL_INVALID_COMMAND_QUEUE" with expression '-36', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_INT = 0x1038
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_INT" with expression '0x1038', CType: int. More...
 
static final int CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE = ( 0x1 << 0x0 )
 Define "CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE" with expression '(1 << 0)', CType: int. More...
 
static final float CL_FLT_MAX = 3.4028234663852886E38f
 Define "CL_FLT_MAX" with expression '0x1.fffffep127f', CType: float. More...
 
static final int CL_LUMINANCE = 0x10b9
 Define "CL_LUMINANCE" with expression '0x10B9', CType: int. More...
 
static final int CL_DEVICE_AVAILABLE = 0x1027
 Define "CL_DEVICE_AVAILABLE" with expression '0x1027', CType: int. More...
 
static final int CL_UCHAR_MAX = 0xff
 Define "CL_UCHAR_MAX" with expression '255', CType: int. More...
 
static final int CL_DEVICE_IMAGE_SUPPORT = 0x1016
 Define "CL_DEVICE_IMAGE_SUPPORT" with expression '0x1016', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_HALF = 0x1034
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_HALF" with expression '0x1034', CType: int. More...
 
static final int CL_DEVICE_REGISTERS_PER_BLOCK_NV = 0x4002
 Define "CL_DEVICE_REGISTERS_PER_BLOCK_NV" with expression '0x4002', CType: int. More...
 
static final int CL_GLX_DISPLAY_KHR = 0x200a
 Define "CL_GLX_DISPLAY_KHR" with expression '0x200A', CType: int. More...
 
static final int CL_PROGRAM_NUM_DEVICES = 0x1162
 Define "CL_PROGRAM_NUM_DEVICES" with expression '0x1162', CType: int. More...
 
static final int CL_INVALID_BINARY = -42
 Define "CL_INVALID_BINARY" with expression '-42', CType: int. More...
 
static final int CL_DEVICE_PARENT_DEVICE_EXT = 0x4054
 Define "CL_DEVICE_PARENT_DEVICE_EXT" with expression '0x4054', CType: int. More...
 
static final int CL_MEM_OFFSET = 0x1108
 Define "CL_MEM_OFFSET" with expression '0x1108', CType: int. More...
 
static final int CL_INVALID_ARG_SIZE = -51
 Define "CL_INVALID_ARG_SIZE" with expression '-51', CType: int. More...
 
static final int CL_FLT_DIG = 0x6
 Define "CL_FLT_DIG" with expression '6', CType: int. More...
 
static final float CL_M_LN10 = 2.302585092994046f
 Define "CL_M_LN10" with expression '2.302585092994045901094', CType: float. More...
 
static final int CL_UNSIGNED_INT8 = 0x10da
 Define "CL_UNSIGNED_INT8" with expression '0x10DA', CType: int. More...
 
static final int CL_PROGRAM_BUILD_LOG = 0x1183
 Define "CL_PROGRAM_BUILD_LOG" with expression '0x1183', CType: int. More...
 
static final int CL_INVALID_EVENT_WAIT_LIST = -57
 Define "CL_INVALID_EVENT_WAIT_LIST" with expression '-57', CType: int. More...
 
static final int CL_COMMAND_MARKER = 0x11fe
 Define "CL_COMMAND_MARKER" with expression '0x11FE', CType: int. More...
 
static final int CL_DEVICE_TYPE_DEFAULT = ( 0x1 << 0x0 )
 Define "CL_DEVICE_TYPE_DEFAULT" with expression '(1 << 0)', CType: int. More...
 
static final int CL_SIGNED_INT32 = 0x10d9
 Define "CL_SIGNED_INT32" with expression '0x10D9', CType: int. More...
 
static final int CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE = 0x101d
 Define "CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE" with expression '0x101D', CType: int. More...
 
static final int CL_PLATFORM_NAME = 0x902
 Define "CL_PLATFORM_NAME" with expression '0x0902', CType: int. More...
 
static final int CL_EVENT_COMMAND_TYPE = 0x11d1
 Define "CL_EVENT_COMMAND_TYPE" with expression '0x11D1', CType: int. More...
 
static final int CL_READ_WRITE_CACHE = 0x2
 Define "CL_READ_WRITE_CACHE" with expression '0x2', CType: int. More...
 
static final int CL_BUFFER_CREATE_TYPE_REGION = 0x1220
 Define "CL_BUFFER_CREATE_TYPE_REGION" with expression '0x1220', CType: int. More...
 
static final int CL_RGx = 0x10bb
 Define "CL_RGx" with expression '0x10BB', CType: int. More...
 
static final int CL_PRINTF_BUFFERSIZE_ARM = 0x40b1
 Define "CL_PRINTF_BUFFERSIZE_ARM" with expression '0x40B1', CType: int. More...
 
static final float CL_M_LOG2E_F = 1.44269502162933f
 Define "CL_M_LOG2E_F" with expression '1.44269502162933f', CType: float. More...
 
static final int CL_EVENT_COMMAND_QUEUE = 0x11d0
 Define "CL_EVENT_COMMAND_QUEUE" with expression '0x11D0', CType: int. More...
 
static final float CL_M_LOG10E = 0.4342944819032518f
 Define "CL_M_LOG10E" with expression '0.434294481903251816668', CType: float. More...
 
static final int CL_INVALID_PROGRAM = -44
 Define "CL_INVALID_PROGRAM" with expression '-44', CType: int. More...
 
static final int CL_DEVICE_LOCAL_MEM_SIZE = 0x1023
 Define "CL_DEVICE_LOCAL_MEM_SIZE" with expression '0x1023', CType: int. More...
 
static final int CL_PROGRAM_DEVICES = 0x1163
 Define "CL_PROGRAM_DEVICES" with expression '0x1163', CType: int. More...
 
static final int CL_INVALID_IMAGE_SIZE = -40
 Define "CL_INVALID_IMAGE_SIZE" with expression '-40', CType: int. More...
 
static final int CL_FILTER_NEAREST = 0x1140
 Define "CL_FILTER_NEAREST" with expression '0x1140', CType: int. More...
 
static final int CL_CURRENT_DEVICE_FOR_GL_CONTEXT_KHR = 0x2006
 Define "CL_CURRENT_DEVICE_FOR_GL_CONTEXT_KHR" with expression '0x2006', CType: int. More...
 
static final int CL_DEVICE_PROFILE = 0x102e
 Define "CL_DEVICE_PROFILE" with expression '0x102E', CType: int. More...
 
static final int CL_DEVICE_HOST_UNIFIED_MEMORY = 0x1035
 Define "CL_DEVICE_HOST_UNIFIED_MEMORY" with expression '0x1035', CType: int. More...
 
static final int CL_QUEUE_DEVICE = 0x1091
 Define "CL_QUEUE_DEVICE" with expression '0x1091', CType: int. More...
 
static final int CL_IMAGE_WIDTH = 0x1114
 Define "CL_IMAGE_WIDTH" with expression '0x1114', CType: int. More...
 
static final int CL_SAMPLER_REFERENCE_COUNT = 0x1150
 Define "CL_SAMPLER_REFERENCE_COUNT" with expression '0x1150', CType: int. More...
 
static final int CL_FP_SOFT_FLOAT = ( 0x1 << 0x6 )
 Define "CL_FP_SOFT_FLOAT" with expression '(1 << 6)', CType: int. More...
 
static final int CL_GL_OBJECT_BUFFER = 0x2000
 Define "CL_GL_OBJECT_BUFFER" with expression '0x2000', CType: int. More...
 
static final int CL_INVALID_HOST_PTR = -37
 Define "CL_INVALID_HOST_PTR" with expression '-37', CType: int. More...
 
static final float CL_M_SQRT2 = 1.4142135623730951f
 Define "CL_M_SQRT2" with expression '1.414213562373095145475', CType: float. More...
 
static final int CL_DEVICE_COMPUTE_CAPABILITY_MAJOR_NV = 0x4000
 Define "CL_DEVICE_COMPUTE_CAPABILITY_MAJOR_NV" with expression '0x4000', CType: int. More...
 
static final int CL_SHRT_MIN = ( - 0x7fff - 0x1 )
 Define "CL_SHRT_MIN" with expression '(-32767-1)', CType: int. More...
 
static final int CL_GL_CONTEXT_KHR = 0x2008
 Define "CL_GL_CONTEXT_KHR" with expression '0x2008', CType: int. More...
 
static final int CL_KERNEL_WORK_GROUP_SIZE = 0x11b0
 Define "CL_KERNEL_WORK_GROUP_SIZE" with expression '0x11B0', CType: int. More...
 
static final int CL_MEM_COPY_HOST_PTR = ( 0x1 << 0x5 )
 Define "CL_MEM_COPY_HOST_PTR" with expression '(1 << 5)', CType: int. More...
 
static final int CL_PROGRAM_BINARY_SIZES = 0x1165
 Define "CL_PROGRAM_BINARY_SIZES" with expression '0x1165', CType: int. More...
 
static final int CL_WGL_HDC_KHR = 0x200b
 Define "CL_WGL_HDC_KHR" with expression '0x200B', CType: int. More...
 
static final int CL_INVALID_DEVICE = -33
 Define "CL_INVALID_DEVICE" with expression '-33', CType: int. More...
 
static final long CL_DEVICE_TYPE_ALL = 0xffffffffL
 Define "CL_DEVICE_TYPE_ALL" with expression '0xFFFFFFFF', CType: long. More...
 
static final int CL_INVALID_WORK_DIMENSION = -53
 Define "CL_INVALID_WORK_DIMENSION" with expression '-53', CType: int. More...
 
static final int CL_DEVICE_DOUBLE_FP_CONFIG = 0x1032
 Define "CL_DEVICE_DOUBLE_FP_CONFIG" with expression '0x1032', CType: int. More...
 
static final int CL_DEVICE_NAME = 0x102b
 Define "CL_DEVICE_NAME" with expression '0x102B', CType: int. More...
 
static final int CL_COMMAND_MAP_BUFFER = 0x11fb
 Define "CL_COMMAND_MAP_BUFFER" with expression '0x11FB', CType: int. More...
 
static final int CL_MEM_ASSOCIATED_MEMOBJECT = 0x1107
 Define "CL_MEM_ASSOCIATED_MEMOBJECT" with expression '0x1107', CType: int. More...
 
static final int CL_HALF_FLOAT = 0x10dd
 Define "CL_HALF_FLOAT" with expression '0x10DD', CType: int. More...
 
static final int CL_DEVICE_TYPE_CPU = ( 0x1 << 0x1 )
 Define "CL_DEVICE_TYPE_CPU" with expression '(1 << 1)', CType: int. More...
 
static final int CL_COMMAND_NDRANGE_KERNEL = 0x11f0
 Define "CL_COMMAND_NDRANGE_KERNEL" with expression '0x11F0', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_L2_CACHE_EXT = 0x2
 Define "CL_AFFINITY_DOMAIN_L2_CACHE_EXT" with expression '0x2', CType: int. More...
 
static final int CL_INVALID_PROPERTY = -64
 Define "CL_INVALID_PROPERTY" with expression '-64', CType: int. More...
 
static final int CL_DEVICE_VERSION = 0x102f
 Define "CL_DEVICE_VERSION" with expression '0x102F', CType: int. More...
 
static final int CL_DEVICE_SINGLE_FP_CONFIG = 0x101b
 Define "CL_DEVICE_SINGLE_FP_CONFIG" with expression '0x101B', CType: int. More...
 
static final int CL_QUEUED = 0x3
 Define "CL_QUEUED" with expression '0x3', CType: int. More...
 
static final int CL_DEVICE_MEM_BASE_ADDR_ALIGN = 0x1019
 Define "CL_DEVICE_MEM_BASE_ADDR_ALIGN" with expression '0x1019', CType: int. More...
 
static final int CL_DEVICE_PROFILING_TIMER_OFFSET_AMD = 0x4036
 Define "CL_DEVICE_PROFILING_TIMER_OFFSET_AMD" with expression '0x4036', CType: int. More...
 
static final int CL_INVALID_OPERATION = -59
 Define "CL_INVALID_OPERATION" with expression '-59', CType: int. More...
 
static final int CL_MEM_OBJECT_IMAGE3D = 0x10f2
 Define "CL_MEM_OBJECT_IMAGE3D" with expression '0x10F2', CType: int. More...
 
static final int CL_MEM_ALLOC_HOST_PTR = ( 0x1 << 0x4 )
 Define "CL_MEM_ALLOC_HOST_PTR" with expression '(1 << 4)', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT = 0x1007
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT" with expression '0x1007', CType: int. More...
 
static final int KHRONOS_SUPPORT_INT64 = 0x1
 Define "KHRONOS_SUPPORT_INT64" with expression '1', CType: int. More...
 
static final int CL_DEVICE_MAX_READ_IMAGE_ARGS = 0x100e
 Define "CL_DEVICE_MAX_READ_IMAGE_ARGS" with expression '0x100E', CType: int. More...
 
static final int CL_CONTEXT_DEVICES = 0x1081
 Define "CL_CONTEXT_DEVICES" with expression '0x1081', CType: int. More...
 
static final int CL_KERNEL_REFERENCE_COUNT = 0x1192
 Define "CL_KERNEL_REFERENCE_COUNT" with expression '0x1192', CType: int. More...
 
static final int CL_DEVICE_PARTITION_FAILED_EXT = -1057
 Define "CL_DEVICE_PARTITION_FAILED_EXT" with expression '-1057', CType: int. More...
 
static final int CL_DEVICE_NOT_FOUND = -1
 Define "CL_DEVICE_NOT_FOUND" with expression '-1', CType: int. More...
 
static final int CL_MEM_OBJECT_IMAGE2D = 0x10f1
 Define "CL_MEM_OBJECT_IMAGE2D" with expression '0x10F1', CType: int. More...
 
static final int CL_DEVICE_AFFINITY_DOMAINS_EXT = 0x4056
 Define "CL_DEVICE_AFFINITY_DOMAINS_EXT" with expression '0x4056', CType: int. More...
 
static final int CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT = 0x1008
 Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT" with expression '0x1008', CType: int. More...
 
static final int CL_INVALID_KERNEL_DEFINITION = -47
 Define "CL_INVALID_KERNEL_DEFINITION" with expression '-47', CType: int. More...
 
static final float CL_M_2_PI_F = 0.63661974668503f
 Define "CL_M_2_PI_F" with expression '0.63661974668503f', CType: float. More...
 
static final int CL_KERNEL_PRIVATE_MEM_SIZE = 0x11b4
 Define "CL_KERNEL_PRIVATE_MEM_SIZE" with expression '0x11B4', CType: int. More...
 
static final int CL_INVALID_GLOBAL_OFFSET = -56
 Define "CL_INVALID_GLOBAL_OFFSET" with expression '-56', CType: int. More...
 
static final int CL_COMMAND_COPY_BUFFER_RECT = 0x1203
 Define "CL_COMMAND_COPY_BUFFER_RECT" with expression '0x1203', CType: int. More...
 
static final int CL_PLATFORM_ICD_SUFFIX_KHR = 0x920
 Define "CL_PLATFORM_ICD_SUFFIX_KHR" with expression '0x0920', CType: int. More...
 
static final int CL_CONTEXT_PROPERTIES = 0x1082
 Define "CL_CONTEXT_PROPERTIES" with expression '0x1082', CType: int. More...
 
static final int CL_COMMAND_TASK = 0x11f1
 Define "CL_COMMAND_TASK" with expression '0x11F1', CType: int. More...
 
static final int CL_QUEUE_CONTEXT = 0x1090
 Define "CL_QUEUE_CONTEXT" with expression '0x1090', CType: int. More...
 
static final int CL_DEVICE_QUEUE_PROPERTIES = 0x102a
 Define "CL_DEVICE_QUEUE_PROPERTIES" with expression '0x102A', CType: int. More...
 
static final int CL_MEM_OBJECT_BUFFER = 0x10f0
 Define "CL_MEM_OBJECT_BUFFER" with expression '0x10F0', CType: int. More...
 
static final int CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR = -1000
 Define "CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR" with expression '-1000', CType: int. More...
 
static final int CL_AFFINITY_DOMAIN_L1_CACHE_EXT = 0x1
 Define "CL_AFFINITY_DOMAIN_L1_CACHE_EXT" with expression '0x1', CType: int. More...
 
static final int CL_INVALID_GL_OBJECT = -60
 Define "CL_INVALID_GL_OBJECT" with expression '-60', CType: int. More...
 
static final int CL_MISALIGNED_SUB_BUFFER_OFFSET = -13
 Define "CL_MISALIGNED_SUB_BUFFER_OFFSET" with expression '-13', CType: int. More...
 
static final int CL_COMMAND_RELEASE_GL_OBJECTS = 0x1200
 Define "CL_COMMAND_RELEASE_GL_OBJECTS" with expression '0x1200', CType: int. More...
 
static final int CL_GL_OBJECT_TEXTURE2D = 0x2001
 Define "CL_GL_OBJECT_TEXTURE2D" with expression '0x2001', CType: int. More...
 
static final int CL_USHRT_MAX = 0xffff
 Define "CL_USHRT_MAX" with expression '65535', CType: int. More...
 
static final int CL_SNORM_INT16 = 0x10d1
 Define "CL_SNORM_INT16" with expression '0x10D1', CType: int. More...
 
static final int CL_INVALID_IMAGE_FORMAT_DESCRIPTOR = -39
 Define "CL_INVALID_IMAGE_FORMAT_DESCRIPTOR" with expression '-39', CType: int. More...
 
static final int CL_CHAR_MIN = ( - 0x7f - 0x1 )
 Define "CL_CHAR_MIN" with expression '(-127-1)', CType: int. More...
 
static final int CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE = 0x1020
 Define "CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE" with expression '0x1020', CType: int. More...
 
static final int CL_DEVICE_MAX_WORK_GROUP_SIZE = 0x1004
 Define "CL_DEVICE_MAX_WORK_GROUP_SIZE" with expression '0x1004', CType: int. More...
 
static final int CL_ADDRESS_MIRRORED_REPEAT = 0x1134
 Define "CL_ADDRESS_MIRRORED_REPEAT" with expression '0x1134', CType: int. More...
 
static final int CL_COMMAND_MAP_IMAGE = 0x11fc
 Define "CL_COMMAND_MAP_IMAGE" with expression '0x11FC', CType: int. More...
 
static final int CL_GLOBAL = 0x2
 Define "CL_GLOBAL" with expression '0x2', CType: int. More...
 
static final int cl_ext_device_fission = 0x1
 Define "cl_ext_device_fission" with expression '1', CType: int. More...
 
static final int CL_INVALID_QUEUE_PROPERTIES = -35
 Define "CL_INVALID_QUEUE_PROPERTIES" with expression '-35', CType: int. More...
 
static final int CL_MEM_REFERENCE_COUNT = 0x1105
 Define "CL_MEM_REFERENCE_COUNT" with expression '0x1105', CType: int. More...
 
static final int CL_GL_OBJECT_TEXTURE3D = 0x2002
 Define "CL_GL_OBJECT_TEXTURE3D" with expression '0x2002', CType: int. More...
 
static final int CL_DRIVER_VERSION = 0x102d
 Define "CL_DRIVER_VERSION" with expression '0x102D', CType: int. More...
 
static final int CL_DEVICE_VENDOR_ID = 0x1001
 Define "CL_DEVICE_VENDOR_ID" with expression '0x1001', CType: int. More...
 
static final int CL_SAMPLER_CONTEXT = 0x1151
 Define "CL_SAMPLER_CONTEXT" with expression '0x1151', CType: int. More...
 
static final int HAS_STDDEF = 0x1
 Define "HAS_STDDEF" with expression '1', CType: int. More...
 
static final int CL_FLT_MAX_10_EXP = 0x26
 Define "CL_FLT_MAX_10_EXP" with expression '+38', CType: int. More...
 
static final float CL_M_LOG10E_F = 0.4342944920063f
 Define "CL_M_LOG10E_F" with expression '0.43429449200630f', CType: float. More...
 
static final int CL_FP_ROUND_TO_NEAREST = ( 0x1 << 0x2 )
 Define "CL_FP_ROUND_TO_NEAREST" with expression '(1 << 2)', CType: int. More...
 
static final int CL_DEVICE_ERROR_CORRECTION_SUPPORT = 0x1024
 Define "CL_DEVICE_ERROR_CORRECTION_SUPPORT" with expression '0x1024', CType: int. More...
 
static final int CL_DEVICE_ENDIAN_LITTLE = 0x1026
 Define "CL_DEVICE_ENDIAN_LITTLE" with expression '0x1026', CType: int. More...
 
static final int CL_EXEC_NATIVE_KERNEL = ( 0x1 << 0x1 )
 Define "CL_EXEC_NATIVE_KERNEL" with expression '(1 << 1)', CType: int. More...
 
static final int CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF = 0x103c
 Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF" with expression '0x103C', CType: int. More...
 
static final int CL_COMMAND_WRITE_IMAGE = 0x11f7
 Define "CL_COMMAND_WRITE_IMAGE" with expression '0x11F7', CType: int. More...
 
static final int CL_SCHAR_MIN = ( - 0x7f - 0x1 )
 Define "CL_SCHAR_MIN" with expression '(-127-1)', CType: int. More...
 
static final int CL_OUT_OF_HOST_MEMORY = -6
 Define "CL_OUT_OF_HOST_MEMORY" with expression '-6', CType: int. More...
 
static final float CL_M_LOG2E = 1.4426950408889634f
 Define "CL_M_LOG2E" with expression '1.442695040888963387005', CType: float. More...
 
static final int CL_MEM_READ_WRITE = ( 0x1 << 0x0 )
 Define "CL_MEM_READ_WRITE" with expression '(1 << 0)', CType: int. More...
 
static final int CL_INVALID_MEM_OBJECT = -38
 Define "CL_INVALID_MEM_OBJECT" with expression '-38', CType: int. More...
 
static final int CL_MAP_READ = ( 0x1 << 0x0 )
 Define "CL_MAP_READ" with expression '(1 << 0)', CType: int. More...
 
static final int CL_FALSE = 0x0
 Define "CL_FALSE" with expression '0', CType: int. More...
 
static final int CL_QUEUE_REFERENCE_COUNT = 0x1092
 Define "CL_QUEUE_REFERENCE_COUNT" with expression '0x1092', CType: int. More...
 
static final int CL_DBL_MANT_DIG = 0x35
 Define "CL_DBL_MANT_DIG" with expression '53', CType: int. More...
 
static final int CL_DEVICE_INTEGRATED_MEMORY_NV = 0x4006
 Define "CL_DEVICE_INTEGRATED_MEMORY_NV" with expression '0x4006', CType: int. More...
 
static final int CL_MEM_SIZE = 0x1102
 Define "CL_MEM_SIZE" with expression '0x1102', CType: int. More...
 
static final int CL_CONTEXT_PROPERTY_USE_CGL_SHAREGROUP_APPLE = 0x10000000
 To be used on Mac OSX instead of CL_CGL_SHAREGROUP_KHR}. More...
 

Detailed Description

Definition at line 28 of file CL11.java.

Member Function Documentation

◆ clCreateBuffer() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateBuffer ( long  context,
long  flags,
long  size,
Buffer  host_ptr,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateBuffer}(cl_context context, cl_mem_flags flags, size_t size, void * host_ptr, cl_int * errcode_ret)

Parameters
host_ptra direct or array-backed java.nio.Buffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateBuffer() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateBuffer ( long  context,
long  flags,
long  size,
Buffer  host_ptr,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateBuffer}(cl_context context, cl_mem_flags flags, size_t size, void * host_ptr, cl_int * errcode_ret)

Parameters
host_ptra direct or array-backed java.nio.Buffer
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateCommandQueue() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateCommandQueue ( long  context,
long  device,
long  properties,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_command_queue {@native clCreateCommandQueue}(cl_context context, cl_device_id device, cl_command_queue_properties properties, cl_int * errcode_ret)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateCommandQueue() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateCommandQueue ( long  context,
long  device,
long  properties,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_command_queue {@native clCreateCommandQueue}(cl_context context, cl_device_id device, cl_command_queue_properties properties, cl_int * errcode_ret)

Parameters
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateEventFromGLsyncKHR() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateEventFromGLsyncKHR ( long  arg0,
long  arg1,
int[]  arg2,
int  arg2_offset 
)

Entry point (through function pointer) to C language function:
cl_event {@native clCreateEventFromGLsyncKHR}(cl_context, cl_GLsync, cl_int * )

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateEventFromGLsyncKHR() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateEventFromGLsyncKHR ( long  arg0,
long  arg1,
IntBuffer  arg2 
)

Entry point (through function pointer) to C language function:
cl_event {@native clCreateEventFromGLsyncKHR}(cl_context, cl_GLsync, cl_int * )

Parameters
arg2a direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateFromGLBuffer() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateFromGLBuffer ( long  context,
long  flags,
int  bufobj,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLBuffer}(cl_context context, cl_mem_flags flags, cl_GLuint bufobj, int * errcode_ret)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateFromGLBuffer() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateFromGLBuffer ( long  context,
long  flags,
int  bufobj,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLBuffer}(cl_context context, cl_mem_flags flags, cl_GLuint bufobj, int * errcode_ret)

Parameters
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateFromGLRenderbuffer() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateFromGLRenderbuffer ( long  context,
long  flags,
int  renderbuffer,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLRenderbuffer}(cl_context context, cl_mem_flags flags, cl_GLuint renderbuffer, cl_int * errcode_ret)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateFromGLRenderbuffer() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateFromGLRenderbuffer ( long  context,
long  flags,
int  renderbuffer,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLRenderbuffer}(cl_context context, cl_mem_flags flags, cl_GLuint renderbuffer, cl_int * errcode_ret)

Parameters
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateFromGLTexture2D() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateFromGLTexture2D ( long  context,
long  flags,
int  target,
int  miplevel,
int  texture,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLTexture2D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateFromGLTexture2D() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateFromGLTexture2D ( long  context,
long  flags,
int  target,
int  miplevel,
int  texture,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLTexture2D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)

Parameters
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateFromGLTexture3D() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateFromGLTexture3D ( long  context,
long  flags,
int  target,
int  miplevel,
int  texture,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLTexture3D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateFromGLTexture3D() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateFromGLTexture3D ( long  context,
long  flags,
int  target,
int  miplevel,
int  texture,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateFromGLTexture3D}(cl_context context, cl_mem_flags flags, cl_GLenum target, cl_GLint miplevel, cl_GLuint texture, cl_int * errcode_ret)

Parameters
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateImage2D() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateImage2D ( long  context,
long  flags,
CLImageFormatImpl  image_format,
long  image_width,
long  image_height,
long  image_row_pitch,
Buffer  host_ptr,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateImage2D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_row_pitch, void * host_ptr, cl_int * errcode_ret)

Parameters
host_ptra direct or array-backed java.nio.Buffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateImage2D() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateImage2D ( long  context,
long  flags,
CLImageFormatImpl  image_format,
long  image_width,
long  image_height,
long  image_row_pitch,
Buffer  host_ptr,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateImage2D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_row_pitch, void * host_ptr, cl_int * errcode_ret)

Parameters
host_ptra direct or array-backed java.nio.Buffer
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateImage3D() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateImage3D ( long  context,
long  flags,
CLImageFormatImpl  image_format,
long  image_width,
long  image_height,
long  image_depth,
long  image_row_pitch,
long  image_slice_pitch,
Buffer  host_ptr,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateImage3D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_depth, size_t image_row_pitch, size_t image_slice_pitch, void * host_ptr, cl_int * errcode_ret)

Parameters
host_ptra direct or array-backed java.nio.Buffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateImage3D() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateImage3D ( long  context,
long  flags,
CLImageFormatImpl  image_format,
long  image_width,
long  image_height,
long  image_depth,
long  image_row_pitch,
long  image_slice_pitch,
Buffer  host_ptr,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateImage3D}(cl_context context, cl_mem_flags flags, const cl_image_format * image_format, size_t image_width, size_t image_height, size_t image_depth, size_t image_row_pitch, size_t image_slice_pitch, void * host_ptr, cl_int * errcode_ret)

Parameters
host_ptra direct or array-backed java.nio.Buffer
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateKernel() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateKernel ( long  program,
String  kernel_name,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_kernel {@native clCreateKernel}(cl_program program, const char * kernel_name, cl_int * errcode_ret)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateKernel() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateKernel ( long  program,
String  kernel_name,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_kernel {@native clCreateKernel}(cl_program program, const char * kernel_name, cl_int * errcode_ret)

Parameters
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateKernelsInProgram()

int com.jogamp.opencl.llb.CL11.clCreateKernelsInProgram ( long  program,
int  num_kernels,
PointerBuffer  kernels,
IntBuffer  num_kernels_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clCreateKernelsInProgram}(cl_program program, cl_uint num_kernels, cl_kernel * kernels, cl_uint * num_kernels_ret)

Parameters
kernelsa direct only com.jogamp.common.nio.PointerBuffer
num_kernels_reta direct only java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateProgramWithBinary()

long com.jogamp.opencl.llb.CL11.clCreateProgramWithBinary ( long  context,
int  num_devices,
PointerBuffer  device_list,
PointerBuffer  lengths,
PointerBuffer  binaries,
IntBuffer  binary_status,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_program {@native clCreateProgramWithBinary}(cl_context context, cl_uint num_devices, const cl_device_id * device_list, const size_t * lengths, unsigned const char * * binaries, cl_int * binary_status, cl_int * errcode_ret)

Parameters
device_lista direct only com.jogamp.common.nio.PointerBuffer
lengthsa direct only com.jogamp.common.nio.PointerBuffer
binariesa direct only com.jogamp.common.nio.PointerBuffer
binary_statusa direct only java.nio.IntBuffer
errcode_reta direct only java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateProgramWithSource()

long com.jogamp.opencl.llb.CL11.clCreateProgramWithSource ( long  context,
int  count,
String[]  strings,
PointerBuffer  lengths,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_program {@native clCreateProgramWithSource}(cl_context context, cl_uint count, const char * * strings, const size_t * lengths, cl_int * errcode_ret)

Parameters
lengthsa direct only com.jogamp.common.nio.PointerBuffer
errcode_reta direct only java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateSampler() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateSampler ( long  context,
int  normalized_coords,
int  addressing_mode,
int  filter_mode,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_sampler {@native clCreateSampler}(cl_context context, cl_bool normalized_coords, cl_addressing_mode addressing_mode, cl_filter_mode filter_mode, cl_int * errcode_ret)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateSampler() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateSampler ( long  context,
int  normalized_coords,
int  addressing_mode,
int  filter_mode,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_sampler {@native clCreateSampler}(cl_context context, cl_bool normalized_coords, cl_addressing_mode addressing_mode, cl_filter_mode filter_mode, cl_int * errcode_ret)

Parameters
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateSubBuffer() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateSubBuffer ( long  buffer,
long  flags,
int  buffer_create_type,
Buffer  buffer_create_info,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateSubBuffer}(cl_mem buffer, cl_mem_flags flags, cl_buffer_create_type buffer_create_type, const void * buffer_create_info, cl_int * errcode_ret)

Parameters
buffer_create_infoa direct or array-backed java.nio.Buffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateSubBuffer() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateSubBuffer ( long  buffer,
long  flags,
int  buffer_create_type,
Buffer  buffer_create_info,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_mem {@native clCreateSubBuffer}(cl_mem buffer, cl_mem_flags flags, cl_buffer_create_type buffer_create_type, const void * buffer_create_info, cl_int * errcode_ret)

Parameters
buffer_create_infoa direct or array-backed java.nio.Buffer
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateSubDevicesEXT() [1/2]

int com.jogamp.opencl.llb.CL11.clCreateSubDevicesEXT ( long  arg0,
long[]  arg1,
int  arg1_offset,
int  arg2,
PointerBuffer  arg3,
int[]  arg4,
int  arg4_offset 
)

Entry point (through function pointer) to C language function:
cl_int {@native clCreateSubDevicesEXT}(cl_device_id, const cl_device_partition_property_ext * , cl_uint, cl_device_id * , cl_uint * )

Parameters
arg3a direct or array-backed com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateSubDevicesEXT() [2/2]

int com.jogamp.opencl.llb.CL11.clCreateSubDevicesEXT ( long  arg0,
LongBuffer  arg1,
int  arg2,
PointerBuffer  arg3,
IntBuffer  arg4 
)

Entry point (through function pointer) to C language function:
cl_int {@native clCreateSubDevicesEXT}(cl_device_id, const cl_device_partition_property_ext * , cl_uint, cl_device_id * , cl_uint * )

Parameters
arg1a direct or array-backed java.nio.LongBuffer
arg3a direct or array-backed com.jogamp.common.nio.PointerBuffer
arg4a direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateUserEvent() [1/2]

long com.jogamp.opencl.llb.CL11.clCreateUserEvent ( long  context,
int[]  errcode_ret,
int  errcode_ret_offset 
)

Entry point (through function pointer) to C language function:
cl_event {@native clCreateUserEvent}(cl_context context, cl_int * errcode_ret)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clCreateUserEvent() [2/2]

long com.jogamp.opencl.llb.CL11.clCreateUserEvent ( long  context,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
cl_event {@native clCreateUserEvent}(cl_context context, cl_int * errcode_ret)

Parameters
errcode_reta direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueAcquireGLObjects()

int com.jogamp.opencl.llb.CL11.clEnqueueAcquireGLObjects ( long  command_queue,
int  num_objects,
PointerBuffer  mem_objects,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueAcquireGLObjects}(cl_command_queue command_queue, cl_uint num_objects, const cl_mem * mem_objects, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
mem_objectsa direct only com.jogamp.common.nio.PointerBuffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueBarrier()

int com.jogamp.opencl.llb.CL11.clEnqueueBarrier ( long  command_queue)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueBarrier}(cl_command_queue command_queue)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueCopyBuffer()

int com.jogamp.opencl.llb.CL11.clEnqueueCopyBuffer ( long  command_queue,
long  src_buffer,
long  dst_buffer,
long  src_offset,
long  dst_offset,
long  cb,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyBuffer}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_buffer, size_t src_offset, size_t dst_offset, size_t cb, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueCopyBufferRect()

int com.jogamp.opencl.llb.CL11.clEnqueueCopyBufferRect ( long  command_queue,
long  src_buffer,
long  dst_buffer,
PointerBuffer  src_origin,
PointerBuffer  dst_origin,
PointerBuffer  region,
long  src_row_pitch,
long  src_slice_pitch,
long  dst_row_pitch,
long  dst_slice_pitch,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyBufferRect}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_buffer, const size_t * src_origin, const size_t * dst_origin, const size_t * region, size_t src_row_pitch, size_t src_slice_pitch, size_t dst_row_pitch, size_t dst_slice_pitch, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
src_origina direct only com.jogamp.common.nio.PointerBuffer
dst_origina direct only com.jogamp.common.nio.PointerBuffer
regiona direct only com.jogamp.common.nio.PointerBuffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueCopyBufferToImage()

int com.jogamp.opencl.llb.CL11.clEnqueueCopyBufferToImage ( long  command_queue,
long  src_buffer,
long  dst_image,
long  src_offset,
PointerBuffer  arg4,
PointerBuffer  arg5,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyBufferToImage}(cl_command_queue command_queue, cl_mem src_buffer, cl_mem dst_image, size_t src_offset, const size_t * , const size_t * , cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
arg4a direct only com.jogamp.common.nio.PointerBuffer
arg5a direct only com.jogamp.common.nio.PointerBuffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueCopyImage()

int com.jogamp.opencl.llb.CL11.clEnqueueCopyImage ( long  command_queue,
long  src_image,
long  dst_image,
PointerBuffer  arg3,
PointerBuffer  arg4,
PointerBuffer  arg5,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyImage}(cl_command_queue command_queue, cl_mem src_image, cl_mem dst_image, const size_t * , const size_t * , const size_t * , cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
arg3a direct only com.jogamp.common.nio.PointerBuffer
arg4a direct only com.jogamp.common.nio.PointerBuffer
arg5a direct only com.jogamp.common.nio.PointerBuffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueCopyImageToBuffer()

int com.jogamp.opencl.llb.CL11.clEnqueueCopyImageToBuffer ( long  command_queue,
long  src_image,
long  dst_buffer,
PointerBuffer  arg3,
PointerBuffer  arg4,
long  dst_offset,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueCopyImageToBuffer}(cl_command_queue command_queue, cl_mem src_image, cl_mem dst_buffer, const size_t * , const size_t * , size_t dst_offset, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
arg3a direct only com.jogamp.common.nio.PointerBuffer
arg4a direct only com.jogamp.common.nio.PointerBuffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueMapBuffer()

ByteBuffer com.jogamp.opencl.llb.CL11.clEnqueueMapBuffer ( long  command_queue,
long  buffer,
int  blocking_map,
long  map_flags,
long  offset,
long  cb,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
void * {@native clEnqueueMapBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_map, cl_map_flags map_flags, size_t offset, size_t cb, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event, cl_int * errcode_ret)

Parameters
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer
errcode_reta direct only java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueMapImage()

ByteBuffer com.jogamp.opencl.llb.CL11.clEnqueueMapImage ( long  command_queue,
long  image,
int  blocking_map,
long  map_flags,
PointerBuffer  arg4,
PointerBuffer  arg5,
PointerBuffer  image_row_pitch,
PointerBuffer  image_slice_pitch,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event,
IntBuffer  errcode_ret 
)

Entry point (through function pointer) to C language function:
void * {@native clEnqueueMapImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_map, cl_map_flags map_flags, const size_t * , const size_t * , size_t * image_row_pitch, size_t * image_slice_pitch, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event, cl_int * errcode_ret)

Parameters
arg4a direct only com.jogamp.common.nio.PointerBuffer
arg5a direct only com.jogamp.common.nio.PointerBuffer
image_row_pitcha direct only com.jogamp.common.nio.PointerBuffer
image_slice_pitcha direct only com.jogamp.common.nio.PointerBuffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer
errcode_reta direct only java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueMarker()

int com.jogamp.opencl.llb.CL11.clEnqueueMarker ( long  command_queue,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueMarker}(cl_command_queue command_queue, cl_event * event)

Parameters
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueNDRangeKernel()

int com.jogamp.opencl.llb.CL11.clEnqueueNDRangeKernel ( long  command_queue,
long  kernel,
int  work_dim,
PointerBuffer  global_work_offset,
PointerBuffer  global_work_size,
PointerBuffer  local_work_size,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueNDRangeKernel}(cl_command_queue command_queue, cl_kernel kernel, cl_uint work_dim, const size_t * global_work_offset, const size_t * global_work_size, const size_t * local_work_size, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
global_work_offseta direct only com.jogamp.common.nio.PointerBuffer
global_work_sizea direct only com.jogamp.common.nio.PointerBuffer
local_work_sizea direct only com.jogamp.common.nio.PointerBuffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueReadBuffer()

int com.jogamp.opencl.llb.CL11.clEnqueueReadBuffer ( long  command_queue,
long  buffer,
int  blocking_read,
long  offset,
long  cb,
Buffer  ptr,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueReadBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_read, size_t offset, size_t cb, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
ptra direct only java.nio.Buffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueReadBufferRect()

int com.jogamp.opencl.llb.CL11.clEnqueueReadBufferRect ( long  command_queue,
long  buffer,
int  blocking_read,
PointerBuffer  buffer_origin,
PointerBuffer  host_origin,
PointerBuffer  region,
long  buffer_row_pitch,
long  buffer_slice_pitch,
long  host_row_pitch,
long  host_slice_pitch,
Buffer  ptr,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueReadBufferRect}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_read, const size_t * buffer_origin, const size_t * host_origin, const size_t * region, size_t buffer_row_pitch, size_t buffer_slice_pitch, size_t host_row_pitch, size_t host_slice_pitch, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
buffer_origina direct only com.jogamp.common.nio.PointerBuffer
host_origina direct only com.jogamp.common.nio.PointerBuffer
regiona direct only com.jogamp.common.nio.PointerBuffer
ptra direct only java.nio.Buffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueReadImage()

int com.jogamp.opencl.llb.CL11.clEnqueueReadImage ( long  command_queue,
long  image,
int  blocking_read,
PointerBuffer  arg3,
PointerBuffer  arg4,
long  row_pitch,
long  slice_pitch,
Buffer  ptr,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueReadImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_read, const size_t * , const size_t * , size_t row_pitch, size_t slice_pitch, void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
arg3a direct only com.jogamp.common.nio.PointerBuffer
arg4a direct only com.jogamp.common.nio.PointerBuffer
ptra direct only java.nio.Buffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueReleaseGLObjects()

int com.jogamp.opencl.llb.CL11.clEnqueueReleaseGLObjects ( long  command_queue,
int  num_objects,
PointerBuffer  mem_objects,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueReleaseGLObjects}(cl_command_queue command_queue, cl_uint num_objects, const cl_mem * mem_objects, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
mem_objectsa direct only com.jogamp.common.nio.PointerBuffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueTask()

int com.jogamp.opencl.llb.CL11.clEnqueueTask ( long  command_queue,
long  kernel,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueTask}(cl_command_queue command_queue, cl_kernel kernel, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueUnmapMemObject()

int com.jogamp.opencl.llb.CL11.clEnqueueUnmapMemObject ( long  command_queue,
long  memobj,
Buffer  mapped_ptr,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueUnmapMemObject}(cl_command_queue command_queue, cl_mem memobj, void * mapped_ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
mapped_ptra direct only java.nio.Buffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueWaitForEvents()

int com.jogamp.opencl.llb.CL11.clEnqueueWaitForEvents ( long  command_queue,
int  num_events,
PointerBuffer  event_list 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueWaitForEvents}(cl_command_queue command_queue, cl_uint num_events, const cl_event * event_list)

Parameters
event_lista direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueWriteBuffer()

int com.jogamp.opencl.llb.CL11.clEnqueueWriteBuffer ( long  command_queue,
long  buffer,
int  blocking_write,
long  offset,
long  cb,
Buffer  ptr,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueWriteBuffer}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_write, size_t offset, size_t cb, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
ptra direct only java.nio.Buffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueWriteBufferRect()

int com.jogamp.opencl.llb.CL11.clEnqueueWriteBufferRect ( long  command_queue,
long  buffer,
int  blocking_write,
PointerBuffer  buffer_origin,
PointerBuffer  host_origin,
PointerBuffer  region,
long  buffer_row_pitch,
long  buffer_slice_pitch,
long  host_row_pitch,
long  host_slice_pitch,
Buffer  ptr,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueWriteBufferRect}(cl_command_queue command_queue, cl_mem buffer, cl_bool blocking_write, const size_t * buffer_origin, const size_t * host_origin, const size_t * region, size_t buffer_row_pitch, size_t buffer_slice_pitch, size_t host_row_pitch, size_t host_slice_pitch, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
buffer_origina direct only com.jogamp.common.nio.PointerBuffer
host_origina direct only com.jogamp.common.nio.PointerBuffer
regiona direct only com.jogamp.common.nio.PointerBuffer
ptra direct only java.nio.Buffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clEnqueueWriteImage()

int com.jogamp.opencl.llb.CL11.clEnqueueWriteImage ( long  command_queue,
long  image,
int  blocking_write,
PointerBuffer  arg3,
PointerBuffer  arg4,
long  input_row_pitch,
long  input_slice_pitch,
Buffer  ptr,
int  num_events_in_wait_list,
PointerBuffer  event_wait_list,
PointerBuffer  event 
)

Entry point (through function pointer) to C language function:
cl_int {@native clEnqueueWriteImage}(cl_command_queue command_queue, cl_mem image, cl_bool blocking_write, const size_t * , const size_t * , size_t input_row_pitch, size_t input_slice_pitch, const void * ptr, cl_uint num_events_in_wait_list, const cl_event * event_wait_list, cl_event * event)

Parameters
arg3a direct only com.jogamp.common.nio.PointerBuffer
arg4a direct only com.jogamp.common.nio.PointerBuffer
ptra direct only java.nio.Buffer
event_wait_lista direct only com.jogamp.common.nio.PointerBuffer
eventa direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clFinish()

int com.jogamp.opencl.llb.CL11.clFinish ( long  command_queue)

Entry point (through function pointer) to C language function:
cl_int {@native clFinish}(cl_command_queue command_queue)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clFlush()

int com.jogamp.opencl.llb.CL11.clFlush ( long  command_queue)

Entry point (through function pointer) to C language function:
cl_int {@native clFlush}(cl_command_queue command_queue)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetCommandQueueInfo()

int com.jogamp.opencl.llb.CL11.clGetCommandQueueInfo ( long  command_queue,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetCommandQueueInfo}(cl_command_queue command_queue, cl_command_queue_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetContextInfo()

int com.jogamp.opencl.llb.CL11.clGetContextInfo ( long  context,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetContextInfo}(cl_context context, cl_context_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetDeviceIDs()

int com.jogamp.opencl.llb.CL11.clGetDeviceIDs ( long  platform,
long  device_type,
int  num_entries,
PointerBuffer  devices,
IntBuffer  num_devices 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetDeviceIDs}(cl_platform_id platform, cl_device_type device_type, cl_uint num_entries, cl_device_id * devices, cl_uint * num_devices)

Parameters
devicesa direct only com.jogamp.common.nio.PointerBuffer
num_devicesa direct only java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetDeviceInfo()

int com.jogamp.opencl.llb.CL11.clGetDeviceInfo ( long  device,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetDeviceInfo}(cl_device_id device, cl_device_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetEventInfo()

int com.jogamp.opencl.llb.CL11.clGetEventInfo ( long  event,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetEventInfo}(cl_event event, cl_event_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetEventProfilingInfo()

int com.jogamp.opencl.llb.CL11.clGetEventProfilingInfo ( long  event,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetEventProfilingInfo}(cl_event event, cl_profiling_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetGLContextInfoKHR()

int com.jogamp.opencl.llb.CL11.clGetGLContextInfoKHR ( PointerBuffer  properties,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetGLContextInfoKHR}(const cl_context_properties * properties, cl_gl_context_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
propertiesa direct only com.jogamp.common.nio.PointerBuffer
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetGLObjectInfo() [1/2]

int com.jogamp.opencl.llb.CL11.clGetGLObjectInfo ( long  memobj,
int[]  gl_object_type,
int  gl_object_type_offset,
int[]  gl_object_name,
int  gl_object_name_offset 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetGLObjectInfo}(cl_mem memobj, cl_gl_object_type * gl_object_type, cl_GLuint * gl_object_name)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetGLObjectInfo() [2/2]

int com.jogamp.opencl.llb.CL11.clGetGLObjectInfo ( long  memobj,
IntBuffer  gl_object_type,
IntBuffer  gl_object_name 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetGLObjectInfo}(cl_mem memobj, cl_gl_object_type * gl_object_type, cl_GLuint * gl_object_name)

Parameters
gl_object_typea direct or array-backed java.nio.IntBuffer
gl_object_namea direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetGLTextureInfo()

int com.jogamp.opencl.llb.CL11.clGetGLTextureInfo ( long  memobj,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetGLTextureInfo}(cl_mem memobj, cl_gl_texture_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct or array-backed java.nio.Buffer
param_value_size_reta direct or array-backed com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetImageInfo()

int com.jogamp.opencl.llb.CL11.clGetImageInfo ( long  image,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetImageInfo}(cl_mem image, cl_image_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetKernelInfo()

int com.jogamp.opencl.llb.CL11.clGetKernelInfo ( long  kernel,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetKernelInfo}(cl_kernel kernel, cl_kernel_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetKernelWorkGroupInfo()

int com.jogamp.opencl.llb.CL11.clGetKernelWorkGroupInfo ( long  kernel,
long  device,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetKernelWorkGroupInfo}(cl_kernel kernel, cl_device_id device, cl_kernel_work_group_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetMemObjectInfo()

int com.jogamp.opencl.llb.CL11.clGetMemObjectInfo ( long  memobj,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetMemObjectInfo}(cl_mem memobj, cl_mem_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetPlatformIDs()

int com.jogamp.opencl.llb.CL11.clGetPlatformIDs ( int  num_entries,
PointerBuffer  platforms,
IntBuffer  num_platforms 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetPlatformIDs}(cl_uint num_entries, cl_platform_id * platforms, cl_uint * num_platforms)

Parameters
platformsa direct only com.jogamp.common.nio.PointerBuffer
num_platformsa direct only java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetPlatformInfo()

int com.jogamp.opencl.llb.CL11.clGetPlatformInfo ( long  platform,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetPlatformInfo}(cl_platform_id platform, cl_platform_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetProgramBuildInfo()

int com.jogamp.opencl.llb.CL11.clGetProgramBuildInfo ( long  program,
long  device,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetProgramBuildInfo}(cl_program program, cl_device_id device, cl_program_build_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetProgramInfo()

int com.jogamp.opencl.llb.CL11.clGetProgramInfo ( long  program,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetProgramInfo}(cl_program program, cl_program_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetSamplerInfo()

int com.jogamp.opencl.llb.CL11.clGetSamplerInfo ( long  sampler,
int  param_name,
long  param_value_size,
Buffer  param_value,
PointerBuffer  param_value_size_ret 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetSamplerInfo}(cl_sampler sampler, cl_sampler_info param_name, size_t param_value_size, void * param_value, size_t * param_value_size_ret)

Parameters
param_valuea direct only java.nio.Buffer
param_value_size_reta direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetSupportedImageFormats() [1/2]

int com.jogamp.opencl.llb.CL11.clGetSupportedImageFormats ( long  context,
long  flags,
int  image_type,
int  num_entries,
CLImageFormatImpl  image_formats,
int[]  num_image_formats,
int  num_image_formats_offset 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetSupportedImageFormats}(cl_context context, cl_mem_flags flags, cl_mem_object_type image_type, cl_uint num_entries, cl_image_format * image_formats, cl_uint * num_image_formats)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clGetSupportedImageFormats() [2/2]

int com.jogamp.opencl.llb.CL11.clGetSupportedImageFormats ( long  context,
long  flags,
int  image_type,
int  num_entries,
CLImageFormatImpl  image_formats,
IntBuffer  num_image_formats 
)

Entry point (through function pointer) to C language function:
cl_int {@native clGetSupportedImageFormats}(cl_context context, cl_mem_flags flags, cl_mem_object_type image_type, cl_uint num_entries, cl_image_format * image_formats, cl_uint * num_image_formats)

Parameters
num_image_formatsa direct or array-backed java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clIcdGetPlatformIDsKHR()

int com.jogamp.opencl.llb.CL11.clIcdGetPlatformIDsKHR ( int  arg0,
PointerBuffer  arg1,
IntBuffer  arg2 
)

Entry point (through function pointer) to C language function:
cl_int {@native clIcdGetPlatformIDsKHR}(cl_uint, cl_platform_id * , cl_uint * )

Parameters
arg1a direct only com.jogamp.common.nio.PointerBuffer
arg2a direct only java.nio.IntBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clReleaseCommandQueue()

int com.jogamp.opencl.llb.CL11.clReleaseCommandQueue ( long  command_queue)

Entry point (through function pointer) to C language function:
cl_int {@native clReleaseCommandQueue}(cl_command_queue command_queue)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clReleaseDeviceEXT()

int com.jogamp.opencl.llb.CL11.clReleaseDeviceEXT ( long  arg0)

Entry point (through function pointer) to C language function:
cl_int {@native clReleaseDeviceEXT}(cl_device_id)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clReleaseEvent()

int com.jogamp.opencl.llb.CL11.clReleaseEvent ( long  event)

Entry point (through function pointer) to C language function:
cl_int {@native clReleaseEvent}(cl_event event)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clReleaseKernel()

int com.jogamp.opencl.llb.CL11.clReleaseKernel ( long  kernel)

Entry point (through function pointer) to C language function:
cl_int {@native clReleaseKernel}(cl_kernel kernel)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clReleaseMemObject()

int com.jogamp.opencl.llb.CL11.clReleaseMemObject ( long  memobj)

Entry point (through function pointer) to C language function:
cl_int {@native clReleaseMemObject}(cl_mem memobj)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clReleaseProgram()

int com.jogamp.opencl.llb.CL11.clReleaseProgram ( long  program)

Entry point (through function pointer) to C language function:
cl_int {@native clReleaseProgram}(cl_program program)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clReleaseSampler()

int com.jogamp.opencl.llb.CL11.clReleaseSampler ( long  sampler)

Entry point (through function pointer) to C language function:
cl_int {@native clReleaseSampler}(cl_sampler sampler)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clRetainCommandQueue()

int com.jogamp.opencl.llb.CL11.clRetainCommandQueue ( long  command_queue)

Entry point (through function pointer) to C language function:
cl_int {@native clRetainCommandQueue}(cl_command_queue command_queue)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clRetainContext()

int com.jogamp.opencl.llb.CL11.clRetainContext ( long  context)

Entry point (through function pointer) to C language function:
cl_int {@native clRetainContext}(cl_context context)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clRetainDeviceEXT()

int com.jogamp.opencl.llb.CL11.clRetainDeviceEXT ( long  arg0)

Entry point (through function pointer) to C language function:
cl_int {@native clRetainDeviceEXT}(cl_device_id)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clRetainEvent()

int com.jogamp.opencl.llb.CL11.clRetainEvent ( long  event)

Entry point (through function pointer) to C language function:
cl_int {@native clRetainEvent}(cl_event event)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clRetainKernel()

int com.jogamp.opencl.llb.CL11.clRetainKernel ( long  kernel)

Entry point (through function pointer) to C language function:
cl_int {@native clRetainKernel}(cl_kernel kernel)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clRetainMemObject()

int com.jogamp.opencl.llb.CL11.clRetainMemObject ( long  memobj)

Entry point (through function pointer) to C language function:
cl_int {@native clRetainMemObject}(cl_mem memobj)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clRetainProgram()

int com.jogamp.opencl.llb.CL11.clRetainProgram ( long  program)

Entry point (through function pointer) to C language function:
cl_int {@native clRetainProgram}(cl_program program)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clRetainSampler()

int com.jogamp.opencl.llb.CL11.clRetainSampler ( long  sampler)

Entry point (through function pointer) to C language function:
cl_int {@native clRetainSampler}(cl_sampler sampler)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clSetKernelArg()

int com.jogamp.opencl.llb.CL11.clSetKernelArg ( long  kernel,
int  arg_index,
long  arg_size,
Buffer  arg_value 
)

Entry point (through function pointer) to C language function:
cl_int {@native clSetKernelArg}(cl_kernel kernel, cl_uint arg_index, size_t arg_size, const void * arg_value)

Parameters
arg_valuea direct only java.nio.Buffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clSetUserEventStatus()

int com.jogamp.opencl.llb.CL11.clSetUserEventStatus ( long  event,
int  execution_status 
)

Entry point (through function pointer) to C language function:
cl_int {@native clSetUserEventStatus}(cl_event event, cl_int execution_status)

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clUnloadCompiler()

int com.jogamp.opencl.llb.CL11.clUnloadCompiler ( )

Entry point (through function pointer) to C language function:
cl_int {@native clUnloadCompiler}()

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

◆ clWaitForEvents()

int com.jogamp.opencl.llb.CL11.clWaitForEvents ( int  num_events,
PointerBuffer  event_list 
)

Entry point (through function pointer) to C language function:
cl_int {@native clWaitForEvents}(cl_uint num_events, const cl_event * event_list)

Parameters
event_lista direct only com.jogamp.common.nio.PointerBuffer

Implements com.jogamp.opencl.llb.CL.

Implemented in com.jogamp.opencl.llb.impl.CLImpl11.

Member Data Documentation

◆ CL_A

final int com.jogamp.opencl.llb.CL11.CL_A = 0x10b1
static

Define "CL_A" with expression '0x10B1', CType: int.

Definition at line 411 of file CL11.java.

◆ CL_ADDRESS_CLAMP

final int com.jogamp.opencl.llb.CL11.CL_ADDRESS_CLAMP = 0x1132
static

Define "CL_ADDRESS_CLAMP" with expression '0x1132', CType: int.

Definition at line 121 of file CL11.java.

◆ CL_ADDRESS_CLAMP_TO_EDGE

final int com.jogamp.opencl.llb.CL11.CL_ADDRESS_CLAMP_TO_EDGE = 0x1131
static

Define "CL_ADDRESS_CLAMP_TO_EDGE" with expression '0x1131', CType: int.

Definition at line 487 of file CL11.java.

◆ CL_ADDRESS_MIRRORED_REPEAT

final int com.jogamp.opencl.llb.CL11.CL_ADDRESS_MIRRORED_REPEAT = 0x1134
static

Define "CL_ADDRESS_MIRRORED_REPEAT" with expression '0x1134', CType: int.

Definition at line 753 of file CL11.java.

◆ CL_ADDRESS_NONE

final int com.jogamp.opencl.llb.CL11.CL_ADDRESS_NONE = 0x1130
static

Define "CL_ADDRESS_NONE" with expression '0x1130', CType: int.

Definition at line 103 of file CL11.java.

◆ CL_ADDRESS_REPEAT

final int com.jogamp.opencl.llb.CL11.CL_ADDRESS_REPEAT = 0x1133
static

Define "CL_ADDRESS_REPEAT" with expression '0x1133', CType: int.

Definition at line 211 of file CL11.java.

◆ CL_AFFINITY_DOMAIN_L1_CACHE_EXT

final int com.jogamp.opencl.llb.CL11.CL_AFFINITY_DOMAIN_L1_CACHE_EXT = 0x1
static

Define "CL_AFFINITY_DOMAIN_L1_CACHE_EXT" with expression '0x1', CType: int.

Definition at line 731 of file CL11.java.

◆ CL_AFFINITY_DOMAIN_L2_CACHE_EXT

final int com.jogamp.opencl.llb.CL11.CL_AFFINITY_DOMAIN_L2_CACHE_EXT = 0x2
static

Define "CL_AFFINITY_DOMAIN_L2_CACHE_EXT" with expression '0x2', CType: int.

Definition at line 667 of file CL11.java.

◆ CL_AFFINITY_DOMAIN_L3_CACHE_EXT

final int com.jogamp.opencl.llb.CL11.CL_AFFINITY_DOMAIN_L3_CACHE_EXT = 0x3
static

Define "CL_AFFINITY_DOMAIN_L3_CACHE_EXT" with expression '0x3', CType: int.

Definition at line 225 of file CL11.java.

◆ CL_AFFINITY_DOMAIN_L4_CACHE_EXT

final int com.jogamp.opencl.llb.CL11.CL_AFFINITY_DOMAIN_L4_CACHE_EXT = 0x4
static

Define "CL_AFFINITY_DOMAIN_L4_CACHE_EXT" with expression '0x4', CType: int.

Definition at line 299 of file CL11.java.

◆ CL_AFFINITY_DOMAIN_NEXT_FISSIONABLE_EXT

final int com.jogamp.opencl.llb.CL11.CL_AFFINITY_DOMAIN_NEXT_FISSIONABLE_EXT = 0x100
static

Define "CL_AFFINITY_DOMAIN_NEXT_FISSIONABLE_EXT" with expression '0x100', CType: int.

Definition at line 525 of file CL11.java.

◆ CL_AFFINITY_DOMAIN_NUMA_EXT

final int com.jogamp.opencl.llb.CL11.CL_AFFINITY_DOMAIN_NUMA_EXT = 0x10
static

Define "CL_AFFINITY_DOMAIN_NUMA_EXT" with expression '0x10', CType: int.

Definition at line 99 of file CL11.java.

◆ CL_ARGB

final int com.jogamp.opencl.llb.CL11.CL_ARGB = 0x10b7
static

Define "CL_ARGB" with expression '0x10B7', CType: int.

Definition at line 353 of file CL11.java.

◆ CL_BGRA

final int com.jogamp.opencl.llb.CL11.CL_BGRA = 0x10b6
static

Define "CL_BGRA" with expression '0x10B6', CType: int.

Definition at line 41 of file CL11.java.

◆ CL_BUFFER_CREATE_TYPE_REGION

final int com.jogamp.opencl.llb.CL11.CL_BUFFER_CREATE_TYPE_REGION = 0x1220
static

Define "CL_BUFFER_CREATE_TYPE_REGION" with expression '0x1220', CType: int.

Definition at line 591 of file CL11.java.

◆ CL_BUILD_ERROR

final int com.jogamp.opencl.llb.CL11.CL_BUILD_ERROR = -2
static

Define "CL_BUILD_ERROR" with expression '-2', CType: int.

Definition at line 485 of file CL11.java.

◆ CL_BUILD_IN_PROGRESS

final int com.jogamp.opencl.llb.CL11.CL_BUILD_IN_PROGRESS = -3
static

Define "CL_BUILD_IN_PROGRESS" with expression '-3', CType: int.

Definition at line 251 of file CL11.java.

◆ CL_BUILD_NONE

final int com.jogamp.opencl.llb.CL11.CL_BUILD_NONE = -1
static

Define "CL_BUILD_NONE" with expression '-1', CType: int.

Definition at line 155 of file CL11.java.

◆ CL_BUILD_PROGRAM_FAILURE

final int com.jogamp.opencl.llb.CL11.CL_BUILD_PROGRAM_FAILURE = -11
static

Define "CL_BUILD_PROGRAM_FAILURE" with expression '-11', CType: int.

Definition at line 77 of file CL11.java.

◆ CL_BUILD_SUCCESS

final int com.jogamp.opencl.llb.CL11.CL_BUILD_SUCCESS = 0x0
static

Define "CL_BUILD_SUCCESS" with expression '0', CType: int.

Definition at line 263 of file CL11.java.

◆ CL_CGL_SHAREGROUP_KHR

final int com.jogamp.opencl.llb.CL11.CL_CGL_SHAREGROUP_KHR = 0x200c
static

Define "CL_CGL_SHAREGROUP_KHR" with expression '0x200C', CType: int.

Definition at line 479 of file CL11.java.

◆ CL_CHAR_BIT

final int com.jogamp.opencl.llb.CL11.CL_CHAR_BIT = 0x8
static

Define "CL_CHAR_BIT" with expression '8', CType: int.

Definition at line 183 of file CL11.java.

◆ CL_CHAR_MAX

final int com.jogamp.opencl.llb.CL11.CL_CHAR_MAX = 0x7f
static

Define "CL_CHAR_MAX" with expression '127', CType: int.

Definition at line 163 of file CL11.java.

◆ CL_CHAR_MIN

final int com.jogamp.opencl.llb.CL11.CL_CHAR_MIN = ( - 0x7f - 0x1 )
static

Define "CL_CHAR_MIN" with expression '(-127-1)', CType: int.

Definition at line 747 of file CL11.java.

◆ CL_COMMAND_ACQUIRE_GL_OBJECTS

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_ACQUIRE_GL_OBJECTS = 0x11ff
static

Define "CL_COMMAND_ACQUIRE_GL_OBJECTS" with expression '0x11FF', CType: int.

Definition at line 309 of file CL11.java.

◆ CL_COMMAND_COPY_BUFFER

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_COPY_BUFFER = 0x11f5
static

Define "CL_COMMAND_COPY_BUFFER" with expression '0x11F5', CType: int.

Definition at line 123 of file CL11.java.

◆ CL_COMMAND_COPY_BUFFER_RECT

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_COPY_BUFFER_RECT = 0x1203
static

Define "CL_COMMAND_COPY_BUFFER_RECT" with expression '0x1203', CType: int.

Definition at line 715 of file CL11.java.

◆ CL_COMMAND_COPY_BUFFER_TO_IMAGE

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_COPY_BUFFER_TO_IMAGE = 0x11fa
static

Define "CL_COMMAND_COPY_BUFFER_TO_IMAGE" with expression '0x11FA', CType: int.

Definition at line 247 of file CL11.java.

◆ CL_COMMAND_COPY_IMAGE

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_COPY_IMAGE = 0x11f8
static

Define "CL_COMMAND_COPY_IMAGE" with expression '0x11F8', CType: int.

Definition at line 443 of file CL11.java.

◆ CL_COMMAND_COPY_IMAGE_TO_BUFFER

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_COPY_IMAGE_TO_BUFFER = 0x11f9
static

Define "CL_COMMAND_COPY_IMAGE_TO_BUFFER" with expression '0x11F9', CType: int.

Definition at line 457 of file CL11.java.

◆ CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR = 0x200d
static

Define "CL_COMMAND_GL_FENCE_SYNC_OBJECT_KHR" with expression '0x200D', CType: int.

Definition at line 489 of file CL11.java.

◆ CL_COMMAND_MAP_BUFFER

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_MAP_BUFFER = 0x11fb
static

Define "CL_COMMAND_MAP_BUFFER" with expression '0x11FB', CType: int.

Definition at line 657 of file CL11.java.

◆ CL_COMMAND_MAP_IMAGE

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_MAP_IMAGE = 0x11fc
static

Define "CL_COMMAND_MAP_IMAGE" with expression '0x11FC', CType: int.

Definition at line 755 of file CL11.java.

◆ CL_COMMAND_MARKER

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_MARKER = 0x11fe
static

Define "CL_COMMAND_MARKER" with expression '0x11FE', CType: int.

Definition at line 577 of file CL11.java.

◆ CL_COMMAND_NATIVE_KERNEL

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_NATIVE_KERNEL = 0x11f2
static

Define "CL_COMMAND_NATIVE_KERNEL" with expression '0x11F2', CType: int.

Definition at line 209 of file CL11.java.

◆ CL_COMMAND_NDRANGE_KERNEL

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_NDRANGE_KERNEL = 0x11f0
static

Define "CL_COMMAND_NDRANGE_KERNEL" with expression '0x11F0', CType: int.

Definition at line 665 of file CL11.java.

◆ CL_COMMAND_READ_BUFFER

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_READ_BUFFER = 0x11f3
static

Define "CL_COMMAND_READ_BUFFER" with expression '0x11F3', CType: int.

Definition at line 495 of file CL11.java.

◆ CL_COMMAND_READ_BUFFER_RECT

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_READ_BUFFER_RECT = 0x1201
static

Define "CL_COMMAND_READ_BUFFER_RECT" with expression '0x1201', CType: int.

Definition at line 515 of file CL11.java.

◆ CL_COMMAND_READ_IMAGE

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_READ_IMAGE = 0x11f6
static

Define "CL_COMMAND_READ_IMAGE" with expression '0x11F6', CType: int.

Definition at line 387 of file CL11.java.

◆ CL_COMMAND_RELEASE_GL_OBJECTS

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_RELEASE_GL_OBJECTS = 0x1200
static

Define "CL_COMMAND_RELEASE_GL_OBJECTS" with expression '0x1200', CType: int.

Definition at line 737 of file CL11.java.

◆ CL_COMMAND_TASK

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_TASK = 0x11f1
static

Define "CL_COMMAND_TASK" with expression '0x11F1', CType: int.

Definition at line 721 of file CL11.java.

◆ CL_COMMAND_UNMAP_MEM_OBJECT

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_UNMAP_MEM_OBJECT = 0x11fd
static

Define "CL_COMMAND_UNMAP_MEM_OBJECT" with expression '0x11FD', CType: int.

Definition at line 265 of file CL11.java.

◆ CL_COMMAND_USER

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_USER = 0x1204
static

Define "CL_COMMAND_USER" with expression '0x1204', CType: int.

Definition at line 239 of file CL11.java.

◆ CL_COMMAND_WRITE_BUFFER

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_WRITE_BUFFER = 0x11f4
static

Define "CL_COMMAND_WRITE_BUFFER" with expression '0x11F4', CType: int.

Definition at line 261 of file CL11.java.

◆ CL_COMMAND_WRITE_BUFFER_RECT

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_WRITE_BUFFER_RECT = 0x1202
static

Define "CL_COMMAND_WRITE_BUFFER_RECT" with expression '0x1202', CType: int.

Definition at line 345 of file CL11.java.

◆ CL_COMMAND_WRITE_IMAGE

final int com.jogamp.opencl.llb.CL11.CL_COMMAND_WRITE_IMAGE = 0x11f7
static

Define "CL_COMMAND_WRITE_IMAGE" with expression '0x11F7', CType: int.

Definition at line 789 of file CL11.java.

◆ CL_COMPILER_NOT_AVAILABLE

final int com.jogamp.opencl.llb.CL11.CL_COMPILER_NOT_AVAILABLE = -3
static

Define "CL_COMPILER_NOT_AVAILABLE" with expression '-3', CType: int.

Definition at line 391 of file CL11.java.

◆ CL_COMPLETE

final int com.jogamp.opencl.llb.CL11.CL_COMPLETE = 0x0
static

Define "CL_COMPLETE" with expression '0x0', CType: int.

Definition at line 359 of file CL11.java.

◆ CL_CONTEXT_DEVICES

final int com.jogamp.opencl.llb.CL11.CL_CONTEXT_DEVICES = 0x1081
static

Define "CL_CONTEXT_DEVICES" with expression '0x1081', CType: int.

Definition at line 693 of file CL11.java.

◆ CL_CONTEXT_NUM_DEVICES

final int com.jogamp.opencl.llb.CL11.CL_CONTEXT_NUM_DEVICES = 0x1083
static

Define "CL_CONTEXT_NUM_DEVICES" with expression '0x1083', CType: int.

Definition at line 351 of file CL11.java.

◆ CL_CONTEXT_PLATFORM

final int com.jogamp.opencl.llb.CL11.CL_CONTEXT_PLATFORM = 0x1084
static

Define "CL_CONTEXT_PLATFORM" with expression '0x1084', CType: int.

Definition at line 421 of file CL11.java.

◆ CL_CONTEXT_PROPERTIES

final int com.jogamp.opencl.llb.CL11.CL_CONTEXT_PROPERTIES = 0x1082
static

Define "CL_CONTEXT_PROPERTIES" with expression '0x1082', CType: int.

Definition at line 719 of file CL11.java.

◆ CL_CONTEXT_REFERENCE_COUNT

final int com.jogamp.opencl.llb.CL11.CL_CONTEXT_REFERENCE_COUNT = 0x1080
static

Define "CL_CONTEXT_REFERENCE_COUNT" with expression '0x1080', CType: int.

Definition at line 467 of file CL11.java.

◆ CL_CURRENT_DEVICE_FOR_GL_CONTEXT_KHR

final int com.jogamp.opencl.llb.CL11.CL_CURRENT_DEVICE_FOR_GL_CONTEXT_KHR = 0x2006
static

Define "CL_CURRENT_DEVICE_FOR_GL_CONTEXT_KHR" with expression '0x2006', CType: int.

Definition at line 613 of file CL11.java.

◆ CL_DBL_DIG

final int com.jogamp.opencl.llb.CL11.CL_DBL_DIG = 0xf
static

Define "CL_DBL_DIG" with expression '15', CType: int.

Definition at line 107 of file CL11.java.

◆ CL_DBL_EPSILON

final float com.jogamp.opencl.llb.CL11.CL_DBL_EPSILON = 2.220446049250313E-16f
static

Define "CL_DBL_EPSILON" with expression '0x1.0p-52', CType: float.

Definition at line 533 of file CL11.java.

◆ CL_DBL_MANT_DIG

final int com.jogamp.opencl.llb.CL11.CL_DBL_MANT_DIG = 0x35
static

Define "CL_DBL_MANT_DIG" with expression '53', CType: int.

Definition at line 807 of file CL11.java.

◆ CL_DBL_MAX

final double com.jogamp.opencl.llb.CL11.CL_DBL_MAX = 1.7976931348623157E308
static

Define "CL_DBL_MAX" with expression '0x1.fffffffffffffp1023', CType: double.

Definition at line 227 of file CL11.java.

◆ CL_DBL_MAX_10_EXP

final int com.jogamp.opencl.llb.CL11.CL_DBL_MAX_10_EXP = 0x134
static

Define "CL_DBL_MAX_10_EXP" with expression '+308', CType: int.

Definition at line 65 of file CL11.java.

◆ CL_DBL_MAX_EXP

final int com.jogamp.opencl.llb.CL11.CL_DBL_MAX_EXP = 0x400
static

Define "CL_DBL_MAX_EXP" with expression '+1024', CType: int.

Definition at line 291 of file CL11.java.

◆ CL_DBL_MIN

final double com.jogamp.opencl.llb.CL11.CL_DBL_MIN = 2.2250738585072014E-308
static

Define "CL_DBL_MIN" with expression '0x1.0p-1022', CType: double.

Definition at line 455 of file CL11.java.

◆ CL_DBL_MIN_10_EXP

final int com.jogamp.opencl.llb.CL11.CL_DBL_MIN_10_EXP = -307
static

Define "CL_DBL_MIN_10_EXP" with expression '-307', CType: int.

Definition at line 193 of file CL11.java.

◆ CL_DBL_MIN_EXP

final int com.jogamp.opencl.llb.CL11.CL_DBL_MIN_EXP = -1021
static

Define "CL_DBL_MIN_EXP" with expression '-1021', CType: int.

Definition at line 527 of file CL11.java.

◆ CL_DBL_RADIX

final int com.jogamp.opencl.llb.CL11.CL_DBL_RADIX = 0x2
static

Define "CL_DBL_RADIX" with expression '2', CType: int.

Definition at line 115 of file CL11.java.

◆ CL_DEVICE_ADDRESS_BITS

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_ADDRESS_BITS = 0x100d
static

Define "CL_DEVICE_ADDRESS_BITS" with expression '0x100D', CType: int.

Definition at line 477 of file CL11.java.

◆ CL_DEVICE_AFFINITY_DOMAINS_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_AFFINITY_DOMAINS_EXT = 0x4056
static

Define "CL_DEVICE_AFFINITY_DOMAINS_EXT" with expression '0x4056', CType: int.

Definition at line 703 of file CL11.java.

◆ CL_DEVICE_AVAILABLE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_AVAILABLE = 0x1027
static

Define "CL_DEVICE_AVAILABLE" with expression '0x1027', CType: int.

Definition at line 545 of file CL11.java.

◆ CL_DEVICE_COMPILER_AVAILABLE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_COMPILER_AVAILABLE = 0x1028
static

Define "CL_DEVICE_COMPILER_AVAILABLE" with expression '0x1028', CType: int.

Definition at line 307 of file CL11.java.

◆ CL_DEVICE_COMPUTE_CAPABILITY_MAJOR_NV

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_COMPUTE_CAPABILITY_MAJOR_NV = 0x4000
static

Define "CL_DEVICE_COMPUTE_CAPABILITY_MAJOR_NV" with expression '0x4000', CType: int.

Definition at line 633 of file CL11.java.

◆ CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV = 0x4001
static

Define "CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV" with expression '0x4001', CType: int.

Definition at line 113 of file CL11.java.

◆ CL_DEVICE_DOUBLE_FP_CONFIG

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_DOUBLE_FP_CONFIG = 0x1032
static

Define "CL_DEVICE_DOUBLE_FP_CONFIG" with expression '0x1032', CType: int.

Definition at line 653 of file CL11.java.

◆ CL_DEVICE_ENDIAN_LITTLE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_ENDIAN_LITTLE = 0x1026
static

Define "CL_DEVICE_ENDIAN_LITTLE" with expression '0x1026', CType: int.

Definition at line 783 of file CL11.java.

◆ CL_DEVICE_ERROR_CORRECTION_SUPPORT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_ERROR_CORRECTION_SUPPORT = 0x1024
static

Define "CL_DEVICE_ERROR_CORRECTION_SUPPORT" with expression '0x1024', CType: int.

Definition at line 781 of file CL11.java.

◆ CL_DEVICE_EXECUTION_CAPABILITIES

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_EXECUTION_CAPABILITIES = 0x1029
static

Define "CL_DEVICE_EXECUTION_CAPABILITIES" with expression '0x1029', CType: int.

Definition at line 281 of file CL11.java.

◆ CL_DEVICE_EXTENSIONS

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_EXTENSIONS = 0x1030
static

Define "CL_DEVICE_EXTENSIONS" with expression '0x1030', CType: int.

Definition at line 381 of file CL11.java.

◆ CL_DEVICE_GLOBAL_MEM_CACHE_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_GLOBAL_MEM_CACHE_SIZE = 0x101e
static

Define "CL_DEVICE_GLOBAL_MEM_CACHE_SIZE" with expression '0x101E', CType: int.

Definition at line 491 of file CL11.java.

◆ CL_DEVICE_GLOBAL_MEM_CACHE_TYPE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_GLOBAL_MEM_CACHE_TYPE = 0x101c
static

Define "CL_DEVICE_GLOBAL_MEM_CACHE_TYPE" with expression '0x101C', CType: int.

Definition at line 295 of file CL11.java.

◆ CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE = 0x101d
static

Define "CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE" with expression '0x101D', CType: int.

Definition at line 583 of file CL11.java.

◆ CL_DEVICE_GLOBAL_MEM_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_GLOBAL_MEM_SIZE = 0x101f
static

Define "CL_DEVICE_GLOBAL_MEM_SIZE" with expression '0x101F', CType: int.

Definition at line 463 of file CL11.java.

◆ CL_DEVICE_GPU_OVERLAP_NV

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_GPU_OVERLAP_NV = 0x4004
static

Define "CL_DEVICE_GPU_OVERLAP_NV" with expression '0x4004', CType: int.

Definition at line 219 of file CL11.java.

◆ CL_DEVICE_HALF_FP_CONFIG

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_HALF_FP_CONFIG = 0x1033
static

Define "CL_DEVICE_HALF_FP_CONFIG" with expression '0x1033', CType: int.

Definition at line 303 of file CL11.java.

◆ CL_DEVICE_HOST_UNIFIED_MEMORY

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_HOST_UNIFIED_MEMORY = 0x1035
static

Define "CL_DEVICE_HOST_UNIFIED_MEMORY" with expression '0x1035', CType: int.

Definition at line 617 of file CL11.java.

◆ CL_DEVICE_IMAGE2D_MAX_HEIGHT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_IMAGE2D_MAX_HEIGHT = 0x1012
static

Define "CL_DEVICE_IMAGE2D_MAX_HEIGHT" with expression '0x1012', CType: int.

Definition at line 51 of file CL11.java.

◆ CL_DEVICE_IMAGE2D_MAX_WIDTH

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_IMAGE2D_MAX_WIDTH = 0x1011
static

Define "CL_DEVICE_IMAGE2D_MAX_WIDTH" with expression '0x1011', CType: int.

Definition at line 315 of file CL11.java.

◆ CL_DEVICE_IMAGE3D_MAX_DEPTH

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_IMAGE3D_MAX_DEPTH = 0x1015
static

Define "CL_DEVICE_IMAGE3D_MAX_DEPTH" with expression '0x1015', CType: int.

Definition at line 83 of file CL11.java.

◆ CL_DEVICE_IMAGE3D_MAX_HEIGHT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_IMAGE3D_MAX_HEIGHT = 0x1014
static

Define "CL_DEVICE_IMAGE3D_MAX_HEIGHT" with expression '0x1014', CType: int.

Definition at line 61 of file CL11.java.

◆ CL_DEVICE_IMAGE3D_MAX_WIDTH

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_IMAGE3D_MAX_WIDTH = 0x1013
static

Define "CL_DEVICE_IMAGE3D_MAX_WIDTH" with expression '0x1013', CType: int.

Definition at line 521 of file CL11.java.

◆ CL_DEVICE_IMAGE_SUPPORT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_IMAGE_SUPPORT = 0x1016
static

Define "CL_DEVICE_IMAGE_SUPPORT" with expression '0x1016', CType: int.

Definition at line 549 of file CL11.java.

◆ CL_DEVICE_INTEGRATED_MEMORY_NV

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_INTEGRATED_MEMORY_NV = 0x4006
static

Define "CL_DEVICE_INTEGRATED_MEMORY_NV" with expression '0x4006', CType: int.

Definition at line 809 of file CL11.java.

◆ CL_DEVICE_KERNEL_EXEC_TIMEOUT_NV

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_KERNEL_EXEC_TIMEOUT_NV = 0x4005
static

Define "CL_DEVICE_KERNEL_EXEC_TIMEOUT_NV" with expression '0x4005', CType: int.

Definition at line 135 of file CL11.java.

◆ CL_DEVICE_LOCAL_MEM_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_LOCAL_MEM_SIZE = 0x1023
static

Define "CL_DEVICE_LOCAL_MEM_SIZE" with expression '0x1023', CType: int.

Definition at line 605 of file CL11.java.

◆ CL_DEVICE_LOCAL_MEM_TYPE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_LOCAL_MEM_TYPE = 0x1022
static

Define "CL_DEVICE_LOCAL_MEM_TYPE" with expression '0x1022', CType: int.

Definition at line 233 of file CL11.java.

◆ CL_DEVICE_MAX_CLOCK_FREQUENCY

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_CLOCK_FREQUENCY = 0x100c
static

Define "CL_DEVICE_MAX_CLOCK_FREQUENCY" with expression '0x100C', CType: int.

Definition at line 355 of file CL11.java.

◆ CL_DEVICE_MAX_COMPUTE_UNITS

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_COMPUTE_UNITS = 0x1002
static

Define "CL_DEVICE_MAX_COMPUTE_UNITS" with expression '0x1002', CType: int.

Definition at line 117 of file CL11.java.

◆ CL_DEVICE_MAX_CONSTANT_ARGS

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_CONSTANT_ARGS = 0x1021
static

Define "CL_DEVICE_MAX_CONSTANT_ARGS" with expression '0x1021', CType: int.

Definition at line 461 of file CL11.java.

◆ CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE = 0x1020
static

Define "CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE" with expression '0x1020', CType: int.

Definition at line 749 of file CL11.java.

◆ CL_DEVICE_MAX_MEM_ALLOC_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_MEM_ALLOC_SIZE = 0x1010
static

Define "CL_DEVICE_MAX_MEM_ALLOC_SIZE" with expression '0x1010', CType: int.

Definition at line 323 of file CL11.java.

◆ CL_DEVICE_MAX_PARAMETER_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_PARAMETER_SIZE = 0x1017
static

Define "CL_DEVICE_MAX_PARAMETER_SIZE" with expression '0x1017', CType: int.

Definition at line 369 of file CL11.java.

◆ CL_DEVICE_MAX_READ_IMAGE_ARGS

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_READ_IMAGE_ARGS = 0x100e
static

Define "CL_DEVICE_MAX_READ_IMAGE_ARGS" with expression '0x100E', CType: int.

Definition at line 691 of file CL11.java.

◆ CL_DEVICE_MAX_SAMPLERS

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_SAMPLERS = 0x1018
static

Define "CL_DEVICE_MAX_SAMPLERS" with expression '0x1018', CType: int.

Definition at line 297 of file CL11.java.

◆ CL_DEVICE_MAX_WORK_GROUP_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_WORK_GROUP_SIZE = 0x1004
static

Define "CL_DEVICE_MAX_WORK_GROUP_SIZE" with expression '0x1004', CType: int.

Definition at line 751 of file CL11.java.

◆ CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS = 0x1003
static

Define "CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS" with expression '0x1003', CType: int.

Definition at line 429 of file CL11.java.

◆ CL_DEVICE_MAX_WORK_ITEM_SIZES

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_WORK_ITEM_SIZES = 0x1005
static

Define "CL_DEVICE_MAX_WORK_ITEM_SIZES" with expression '0x1005', CType: int.

Definition at line 423 of file CL11.java.

◆ CL_DEVICE_MAX_WRITE_IMAGE_ARGS

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MAX_WRITE_IMAGE_ARGS = 0x100f
static

Define "CL_DEVICE_MAX_WRITE_IMAGE_ARGS" with expression '0x100F', CType: int.

Definition at line 275 of file CL11.java.

◆ CL_DEVICE_MEM_BASE_ADDR_ALIGN

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MEM_BASE_ADDR_ALIGN = 0x1019
static

Define "CL_DEVICE_MEM_BASE_ADDR_ALIGN" with expression '0x1019', CType: int.

Definition at line 677 of file CL11.java.

◆ CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE = 0x101a
static

Define "CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE" with expression '0x101A', CType: int.

Definition at line 449 of file CL11.java.

◆ CL_DEVICE_NAME

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NAME = 0x102b
static

Define "CL_DEVICE_NAME" with expression '0x102B', CType: int.

Definition at line 655 of file CL11.java.

◆ CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR = 0x1036
static

Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR" with expression '0x1036', CType: int.

Definition at line 439 of file CL11.java.

◆ CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE = 0x103b
static

Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE" with expression '0x103B', CType: int.

Definition at line 249 of file CL11.java.

◆ CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT = 0x103a
static

Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT" with expression '0x103A', CType: int.

Definition at line 333 of file CL11.java.

◆ CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF = 0x103c
static

Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF" with expression '0x103C', CType: int.

Definition at line 787 of file CL11.java.

◆ CL_DEVICE_NATIVE_VECTOR_WIDTH_INT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NATIVE_VECTOR_WIDTH_INT = 0x1038
static

Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_INT" with expression '0x1038', CType: int.

Definition at line 537 of file CL11.java.

◆ CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG = 0x1039
static

Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG" with expression '0x1039', CType: int.

Definition at line 243 of file CL11.java.

◆ CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT = 0x1037
static

Define "CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT" with expression '0x1037', CType: int.

Definition at line 223 of file CL11.java.

◆ CL_DEVICE_NOT_AVAILABLE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NOT_AVAILABLE = -2
static

Define "CL_DEVICE_NOT_AVAILABLE" with expression '-2', CType: int.

Definition at line 367 of file CL11.java.

◆ CL_DEVICE_NOT_FOUND

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_NOT_FOUND = -1
static

Define "CL_DEVICE_NOT_FOUND" with expression '-1', CType: int.

Definition at line 699 of file CL11.java.

◆ CL_DEVICE_OPENCL_C_VERSION

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_OPENCL_C_VERSION = 0x103d
static

Define "CL_DEVICE_OPENCL_C_VERSION" with expression '0x103D', CType: int.

Definition at line 433 of file CL11.java.

◆ CL_DEVICE_PARENT_DEVICE_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PARENT_DEVICE_EXT = 0x4054
static

Define "CL_DEVICE_PARENT_DEVICE_EXT" with expression '0x4054', CType: int.

Definition at line 561 of file CL11.java.

◆ CL_DEVICE_PARTITION_BY_AFFINITY_DOMAIN_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PARTITION_BY_AFFINITY_DOMAIN_EXT = 0x4053
static

Define "CL_DEVICE_PARTITION_BY_AFFINITY_DOMAIN_EXT" with expression '0x4053', CType: int.

Definition at line 441 of file CL11.java.

◆ CL_DEVICE_PARTITION_BY_COUNTS_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PARTITION_BY_COUNTS_EXT = 0x4051
static

Define "CL_DEVICE_PARTITION_BY_COUNTS_EXT" with expression '0x4051', CType: int.

Definition at line 383 of file CL11.java.

◆ CL_DEVICE_PARTITION_BY_NAMES_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PARTITION_BY_NAMES_EXT = 0x4052
static

Define "CL_DEVICE_PARTITION_BY_NAMES_EXT" with expression '0x4052', CType: int.

Definition at line 245 of file CL11.java.

◆ CL_DEVICE_PARTITION_EQUALLY_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PARTITION_EQUALLY_EXT = 0x4050
static

Define "CL_DEVICE_PARTITION_EQUALLY_EXT" with expression '0x4050', CType: int.

Definition at line 331 of file CL11.java.

◆ CL_DEVICE_PARTITION_FAILED_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PARTITION_FAILED_EXT = -1057
static

Define "CL_DEVICE_PARTITION_FAILED_EXT" with expression '-1057', CType: int.

Definition at line 697 of file CL11.java.

◆ CL_DEVICE_PARTITION_STYLE_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PARTITION_STYLE_EXT = 0x4058
static

Define "CL_DEVICE_PARTITION_STYLE_EXT" with expression '0x4058', CType: int.

Definition at line 365 of file CL11.java.

◆ CL_DEVICE_PARTITION_TYPES_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PARTITION_TYPES_EXT = 0x4055
static

Define "CL_DEVICE_PARTITION_TYPES_EXT" with expression '0x4055', CType: int.

Definition at line 221 of file CL11.java.

◆ CL_DEVICE_PLATFORM

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PLATFORM = 0x1031
static

Define "CL_DEVICE_PLATFORM" with expression '0x1031', CType: int.

Definition at line 319 of file CL11.java.

◆ CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR = 0x1006
static

Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR" with expression '0x1006', CType: int.

Definition at line 337 of file CL11.java.

◆ CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE = 0x100b
static

Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE" with expression '0x100B', CType: int.

Definition at line 93 of file CL11.java.

◆ CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT = 0x100a
static

Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT" with expression '0x100A', CType: int.

Definition at line 147 of file CL11.java.

◆ CL_DEVICE_PREFERRED_VECTOR_WIDTH_HALF

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PREFERRED_VECTOR_WIDTH_HALF = 0x1034
static

Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_HALF" with expression '0x1034', CType: int.

Definition at line 551 of file CL11.java.

◆ CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT = 0x1008
static

Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT" with expression '0x1008', CType: int.

Definition at line 705 of file CL11.java.

◆ CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG = 0x1009
static

Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG" with expression '0x1009', CType: int.

Definition at line 181 of file CL11.java.

◆ CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT = 0x1007
static

Define "CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT" with expression '0x1007', CType: int.

Definition at line 687 of file CL11.java.

◆ CL_DEVICE_PROFILE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PROFILE = 0x102e
static

Define "CL_DEVICE_PROFILE" with expression '0x102E', CType: int.

Definition at line 615 of file CL11.java.

◆ CL_DEVICE_PROFILING_TIMER_OFFSET_AMD

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PROFILING_TIMER_OFFSET_AMD = 0x4036
static

Define "CL_DEVICE_PROFILING_TIMER_OFFSET_AMD" with expression '0x4036', CType: int.

Definition at line 679 of file CL11.java.

◆ CL_DEVICE_PROFILING_TIMER_RESOLUTION

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_PROFILING_TIMER_RESOLUTION = 0x1025
static

Define "CL_DEVICE_PROFILING_TIMER_RESOLUTION" with expression '0x1025', CType: int.

Definition at line 101 of file CL11.java.

◆ CL_DEVICE_QUEUE_PROPERTIES

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_QUEUE_PROPERTIES = 0x102a
static

Define "CL_DEVICE_QUEUE_PROPERTIES" with expression '0x102A', CType: int.

Definition at line 725 of file CL11.java.

◆ CL_DEVICE_REFERENCE_COUNT_EXT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_REFERENCE_COUNT_EXT = 0x4057
static

Define "CL_DEVICE_REFERENCE_COUNT_EXT" with expression '0x4057', CType: int.

Definition at line 85 of file CL11.java.

◆ CL_DEVICE_REGISTERS_PER_BLOCK_NV

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_REGISTERS_PER_BLOCK_NV = 0x4002
static

Define "CL_DEVICE_REGISTERS_PER_BLOCK_NV" with expression '0x4002', CType: int.

Definition at line 553 of file CL11.java.

◆ CL_DEVICE_SINGLE_FP_CONFIG

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_SINGLE_FP_CONFIG = 0x101b
static

Define "CL_DEVICE_SINGLE_FP_CONFIG" with expression '0x101B', CType: int.

Definition at line 673 of file CL11.java.

◆ CL_DEVICE_TYPE

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_TYPE = 0x1000
static

Define "CL_DEVICE_TYPE" with expression '0x1000', CType: int.

Definition at line 95 of file CL11.java.

◆ CL_DEVICE_TYPE_ACCELERATOR

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_TYPE_ACCELERATOR = ( 0x1 << 0x3 )
static

Define "CL_DEVICE_TYPE_ACCELERATOR" with expression '(1 << 3)', CType: int.

Definition at line 305 of file CL11.java.

◆ CL_DEVICE_TYPE_ALL

final long com.jogamp.opencl.llb.CL11.CL_DEVICE_TYPE_ALL = 0xffffffffL
static

Define "CL_DEVICE_TYPE_ALL" with expression '0xFFFFFFFF', CType: long.

Definition at line 649 of file CL11.java.

◆ CL_DEVICE_TYPE_CPU

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_TYPE_CPU = ( 0x1 << 0x1 )
static

Define "CL_DEVICE_TYPE_CPU" with expression '(1 << 1)', CType: int.

Definition at line 663 of file CL11.java.

◆ CL_DEVICE_TYPE_DEFAULT

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_TYPE_DEFAULT = ( 0x1 << 0x0 )
static

Define "CL_DEVICE_TYPE_DEFAULT" with expression '(1 << 0)', CType: int.

Definition at line 579 of file CL11.java.

◆ CL_DEVICE_TYPE_GPU

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_TYPE_GPU = ( 0x1 << 0x2 )
static

Define "CL_DEVICE_TYPE_GPU" with expression '(1 << 2)', CType: int.

Definition at line 53 of file CL11.java.

◆ CL_DEVICE_VENDOR

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_VENDOR = 0x102c
static

Define "CL_DEVICE_VENDOR" with expression '0x102C', CType: int.

Definition at line 259 of file CL11.java.

◆ CL_DEVICE_VENDOR_ID

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_VENDOR_ID = 0x1001
static

Define "CL_DEVICE_VENDOR_ID" with expression '0x1001', CType: int.

Definition at line 769 of file CL11.java.

◆ CL_DEVICE_VERSION

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_VERSION = 0x102f
static

Define "CL_DEVICE_VERSION" with expression '0x102F', CType: int.

Definition at line 671 of file CL11.java.

◆ CL_DEVICE_WARP_SIZE_NV

final int com.jogamp.opencl.llb.CL11.CL_DEVICE_WARP_SIZE_NV = 0x4003
static

Define "CL_DEVICE_WARP_SIZE_NV" with expression '0x4003', CType: int.

Definition at line 501 of file CL11.java.

◆ CL_DEVICES_FOR_GL_CONTEXT_KHR

final int com.jogamp.opencl.llb.CL11.CL_DEVICES_FOR_GL_CONTEXT_KHR = 0x2007
static

Define "CL_DEVICES_FOR_GL_CONTEXT_KHR" with expression '0x2007', CType: int.

Definition at line 91 of file CL11.java.

◆ CL_DRIVER_VERSION

final int com.jogamp.opencl.llb.CL11.CL_DRIVER_VERSION = 0x102d
static

Define "CL_DRIVER_VERSION" with expression '0x102D', CType: int.

Definition at line 767 of file CL11.java.

◆ CL_EGL_DISPLAY_KHR

final int com.jogamp.opencl.llb.CL11.CL_EGL_DISPLAY_KHR = 0x2009
static

Define "CL_EGL_DISPLAY_KHR" with expression '0x2009', CType: int.

Definition at line 425 of file CL11.java.

◆ CL_EVENT_COMMAND_EXECUTION_STATUS

final int com.jogamp.opencl.llb.CL11.CL_EVENT_COMMAND_EXECUTION_STATUS = 0x11d3
static

Define "CL_EVENT_COMMAND_EXECUTION_STATUS" with expression '0x11D3', CType: int.

Definition at line 317 of file CL11.java.

◆ CL_EVENT_COMMAND_QUEUE

final int com.jogamp.opencl.llb.CL11.CL_EVENT_COMMAND_QUEUE = 0x11d0
static

Define "CL_EVENT_COMMAND_QUEUE" with expression '0x11D0', CType: int.

Definition at line 599 of file CL11.java.

◆ CL_EVENT_COMMAND_TYPE

final int com.jogamp.opencl.llb.CL11.CL_EVENT_COMMAND_TYPE = 0x11d1
static

Define "CL_EVENT_COMMAND_TYPE" with expression '0x11D1', CType: int.

Definition at line 587 of file CL11.java.

◆ CL_EVENT_CONTEXT

final int com.jogamp.opencl.llb.CL11.CL_EVENT_CONTEXT = 0x11d4
static

Define "CL_EVENT_CONTEXT" with expression '0x11D4', CType: int.

Definition at line 523 of file CL11.java.

◆ CL_EVENT_REFERENCE_COUNT

final int com.jogamp.opencl.llb.CL11.CL_EVENT_REFERENCE_COUNT = 0x11d2
static

Define "CL_EVENT_REFERENCE_COUNT" with expression '0x11D2', CType: int.

Definition at line 409 of file CL11.java.

◆ CL_EXEC_KERNEL

final int com.jogamp.opencl.llb.CL11.CL_EXEC_KERNEL = ( 0x1 << 0x0 )
static

Define "CL_EXEC_KERNEL" with expression '(1 << 0)', CType: int.

Definition at line 283 of file CL11.java.

◆ CL_EXEC_NATIVE_KERNEL

final int com.jogamp.opencl.llb.CL11.CL_EXEC_NATIVE_KERNEL = ( 0x1 << 0x1 )
static

Define "CL_EXEC_NATIVE_KERNEL" with expression '(1 << 1)', CType: int.

Definition at line 785 of file CL11.java.

◆ CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST

final int com.jogamp.opencl.llb.CL11.CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST = -14
static

Define "CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST" with expression '-14', CType: int.

Definition at line 241 of file CL11.java.

◆ cl_ext_device_fission

final int com.jogamp.opencl.llb.CL11.cl_ext_device_fission = 0x1
static

Define "cl_ext_device_fission" with expression '1', CType: int.

Definition at line 759 of file CL11.java.

◆ CL_FALSE

final int com.jogamp.opencl.llb.CL11.CL_FALSE = 0x0
static

Define "CL_FALSE" with expression '0', CType: int.

Definition at line 803 of file CL11.java.

◆ CL_FILTER_LINEAR

final int com.jogamp.opencl.llb.CL11.CL_FILTER_LINEAR = 0x1141
static

Define "CL_FILTER_LINEAR" with expression '0x1141', CType: int.

Definition at line 127 of file CL11.java.

◆ CL_FILTER_NEAREST

final int com.jogamp.opencl.llb.CL11.CL_FILTER_NEAREST = 0x1140
static

Define "CL_FILTER_NEAREST" with expression '0x1140', CType: int.

Definition at line 611 of file CL11.java.

◆ CL_FLOAT

final int com.jogamp.opencl.llb.CL11.CL_FLOAT = 0x10de
static

Define "CL_FLOAT" with expression '0x10DE', CType: int.

Definition at line 133 of file CL11.java.

◆ CL_FLT_DIG

final int com.jogamp.opencl.llb.CL11.CL_FLT_DIG = 0x6
static

Define "CL_FLT_DIG" with expression '6', CType: int.

Definition at line 567 of file CL11.java.

◆ CL_FLT_EPSILON

final float com.jogamp.opencl.llb.CL11.CL_FLT_EPSILON = 1.1920928955078125E-7f
static

Define "CL_FLT_EPSILON" with expression '0x1.0p-23f', CType: float.

Definition at line 217 of file CL11.java.

◆ CL_FLT_MANT_DIG

final int com.jogamp.opencl.llb.CL11.CL_FLT_MANT_DIG = 0x18
static

Define "CL_FLT_MANT_DIG" with expression '24', CType: int.

Definition at line 453 of file CL11.java.

◆ CL_FLT_MAX

final float com.jogamp.opencl.llb.CL11.CL_FLT_MAX = 3.4028234663852886E38f
static

Define "CL_FLT_MAX" with expression '0x1.fffffep127f', CType: float.

Definition at line 541 of file CL11.java.

◆ CL_FLT_MAX_10_EXP

final int com.jogamp.opencl.llb.CL11.CL_FLT_MAX_10_EXP = 0x26
static

Define "CL_FLT_MAX_10_EXP" with expression '+38', CType: int.

Definition at line 775 of file CL11.java.

◆ CL_FLT_MAX_EXP

final int com.jogamp.opencl.llb.CL11.CL_FLT_MAX_EXP = 0x80
static

Define "CL_FLT_MAX_EXP" with expression '+128', CType: int.

Definition at line 385 of file CL11.java.

◆ CL_FLT_MIN

final float com.jogamp.opencl.llb.CL11.CL_FLT_MIN = 1.1754943508222875E-38f
static

Define "CL_FLT_MIN" with expression '0x1.0p-126f', CType: float.

Definition at line 289 of file CL11.java.

◆ CL_FLT_MIN_10_EXP

final int com.jogamp.opencl.llb.CL11.CL_FLT_MIN_10_EXP = -37
static

Define "CL_FLT_MIN_10_EXP" with expression '-37', CType: int.

Definition at line 271 of file CL11.java.

◆ CL_FLT_MIN_EXP

final int com.jogamp.opencl.llb.CL11.CL_FLT_MIN_EXP = -125
static

Define "CL_FLT_MIN_EXP" with expression '-125', CType: int.

Definition at line 67 of file CL11.java.

◆ CL_FLT_RADIX

final int com.jogamp.opencl.llb.CL11.CL_FLT_RADIX = 0x2
static

Define "CL_FLT_RADIX" with expression '2', CType: int.

Definition at line 471 of file CL11.java.

◆ CL_FP_DENORM

final int com.jogamp.opencl.llb.CL11.CL_FP_DENORM = ( 0x1 << 0x0 )
static

Define "CL_FP_DENORM" with expression '(1 << 0)', CType: int.

Definition at line 287 of file CL11.java.

◆ CL_FP_FMA

final int com.jogamp.opencl.llb.CL11.CL_FP_FMA = ( 0x1 << 0x5 )
static

Define "CL_FP_FMA" with expression '(1 << 5)', CType: int.

Definition at line 361 of file CL11.java.

◆ CL_FP_INF_NAN

final int com.jogamp.opencl.llb.CL11.CL_FP_INF_NAN = ( 0x1 << 0x1 )
static

Define "CL_FP_INF_NAN" with expression '(1 << 1)', CType: int.

Definition at line 69 of file CL11.java.

◆ CL_FP_ROUND_TO_INF

final int com.jogamp.opencl.llb.CL11.CL_FP_ROUND_TO_INF = ( 0x1 << 0x4 )
static

Define "CL_FP_ROUND_TO_INF" with expression '(1 << 4)', CType: int.

Definition at line 445 of file CL11.java.

◆ CL_FP_ROUND_TO_NEAREST

final int com.jogamp.opencl.llb.CL11.CL_FP_ROUND_TO_NEAREST = ( 0x1 << 0x2 )
static

Define "CL_FP_ROUND_TO_NEAREST" with expression '(1 << 2)', CType: int.

Definition at line 779 of file CL11.java.

◆ CL_FP_ROUND_TO_ZERO

final int com.jogamp.opencl.llb.CL11.CL_FP_ROUND_TO_ZERO = ( 0x1 << 0x3 )
static

Define "CL_FP_ROUND_TO_ZERO" with expression '(1 << 3)', CType: int.

Definition at line 497 of file CL11.java.

◆ CL_FP_SOFT_FLOAT

final int com.jogamp.opencl.llb.CL11.CL_FP_SOFT_FLOAT = ( 0x1 << 0x6 )
static

Define "CL_FP_SOFT_FLOAT" with expression '(1 << 6)', CType: int.

Definition at line 625 of file CL11.java.

◆ CL_GL_CONTEXT_KHR

final int com.jogamp.opencl.llb.CL11.CL_GL_CONTEXT_KHR = 0x2008
static

Define "CL_GL_CONTEXT_KHR" with expression '0x2008', CType: int.

Definition at line 637 of file CL11.java.

◆ CL_GL_MIPMAP_LEVEL

final int com.jogamp.opencl.llb.CL11.CL_GL_MIPMAP_LEVEL = 0x2005
static

Define "CL_GL_MIPMAP_LEVEL" with expression '0x2005', CType: int.

Definition at line 413 of file CL11.java.

◆ CL_GL_OBJECT_BUFFER

final int com.jogamp.opencl.llb.CL11.CL_GL_OBJECT_BUFFER = 0x2000
static

Define "CL_GL_OBJECT_BUFFER" with expression '0x2000', CType: int.

Definition at line 627 of file CL11.java.

◆ CL_GL_OBJECT_RENDERBUFFER

final int com.jogamp.opencl.llb.CL11.CL_GL_OBJECT_RENDERBUFFER = 0x2003
static

Define "CL_GL_OBJECT_RENDERBUFFER" with expression '0x2003', CType: int.

Definition at line 395 of file CL11.java.

◆ CL_GL_OBJECT_TEXTURE2D

final int com.jogamp.opencl.llb.CL11.CL_GL_OBJECT_TEXTURE2D = 0x2001
static

Define "CL_GL_OBJECT_TEXTURE2D" with expression '0x2001', CType: int.

Definition at line 739 of file CL11.java.

◆ CL_GL_OBJECT_TEXTURE3D

final int com.jogamp.opencl.llb.CL11.CL_GL_OBJECT_TEXTURE3D = 0x2002
static

Define "CL_GL_OBJECT_TEXTURE3D" with expression '0x2002', CType: int.

Definition at line 765 of file CL11.java.

◆ CL_GL_TEXTURE_TARGET

final int com.jogamp.opencl.llb.CL11.CL_GL_TEXTURE_TARGET = 0x2004
static

Define "CL_GL_TEXTURE_TARGET" with expression '0x2004', CType: int.

Definition at line 431 of file CL11.java.

◆ CL_GLOBAL

final int com.jogamp.opencl.llb.CL11.CL_GLOBAL = 0x2
static

Define "CL_GLOBAL" with expression '0x2', CType: int.

Definition at line 757 of file CL11.java.

◆ CL_GLX_DISPLAY_KHR

final int com.jogamp.opencl.llb.CL11.CL_GLX_DISPLAY_KHR = 0x200a
static

Define "CL_GLX_DISPLAY_KHR" with expression '0x200A', CType: int.

Definition at line 555 of file CL11.java.

◆ CL_HALF_FLOAT

final int com.jogamp.opencl.llb.CL11.CL_HALF_FLOAT = 0x10dd
static

Define "CL_HALF_FLOAT" with expression '0x10DD', CType: int.

Definition at line 661 of file CL11.java.

◆ CL_IMAGE_DEPTH

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_DEPTH = 0x1116
static

Define "CL_IMAGE_DEPTH" with expression '0x1116', CType: int.

Definition at line 169 of file CL11.java.

◆ CL_IMAGE_ELEMENT_SIZE

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_ELEMENT_SIZE = 0x1111
static

Define "CL_IMAGE_ELEMENT_SIZE" with expression '0x1111', CType: int.

Definition at line 339 of file CL11.java.

◆ CL_IMAGE_FORMAT

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_FORMAT = 0x1110
static

Define "CL_IMAGE_FORMAT" with expression '0x1110', CType: int.

Definition at line 335 of file CL11.java.

◆ CL_IMAGE_FORMAT_MISMATCH

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_FORMAT_MISMATCH = -9
static

Define "CL_IMAGE_FORMAT_MISMATCH" with expression '-9', CType: int.

Definition at line 371 of file CL11.java.

◆ CL_IMAGE_FORMAT_NOT_SUPPORTED

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_FORMAT_NOT_SUPPORTED = -10
static

Define "CL_IMAGE_FORMAT_NOT_SUPPORTED" with expression '-10', CType: int.

Definition at line 161 of file CL11.java.

◆ CL_IMAGE_HEIGHT

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_HEIGHT = 0x1115
static

Define "CL_IMAGE_HEIGHT" with expression '0x1115', CType: int.

Definition at line 63 of file CL11.java.

◆ CL_IMAGE_ROW_PITCH

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_ROW_PITCH = 0x1112
static

Define "CL_IMAGE_ROW_PITCH" with expression '0x1112', CType: int.

Definition at line 499 of file CL11.java.

◆ CL_IMAGE_SLICE_PITCH

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_SLICE_PITCH = 0x1113
static

Define "CL_IMAGE_SLICE_PITCH" with expression '0x1113', CType: int.

Definition at line 89 of file CL11.java.

◆ CL_IMAGE_WIDTH

final int com.jogamp.opencl.llb.CL11.CL_IMAGE_WIDTH = 0x1114
static

Define "CL_IMAGE_WIDTH" with expression '0x1114', CType: int.

Definition at line 621 of file CL11.java.

◆ CL_INT_MAX

final int com.jogamp.opencl.llb.CL11.CL_INT_MAX = 0x7fffffff
static

Define "CL_INT_MAX" with expression '2147483647', CType: int.

Definition at line 285 of file CL11.java.

◆ CL_INT_MIN

final int com.jogamp.opencl.llb.CL11.CL_INT_MIN = ( - 0x7fffffff - 0x1 )
static

Define "CL_INT_MIN" with expression '(-2147483647-1)', CType: int.

Definition at line 87 of file CL11.java.

◆ CL_INTENSITY

final int com.jogamp.opencl.llb.CL11.CL_INTENSITY = 0x10b8
static

Define "CL_INTENSITY" with expression '0x10B8', CType: int.

Definition at line 363 of file CL11.java.

◆ CL_INVALID_ARG_INDEX

final int com.jogamp.opencl.llb.CL11.CL_INVALID_ARG_INDEX = -49
static

Define "CL_INVALID_ARG_INDEX" with expression '-49', CType: int.

Definition at line 125 of file CL11.java.

◆ CL_INVALID_ARG_SIZE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_ARG_SIZE = -51
static

Define "CL_INVALID_ARG_SIZE" with expression '-51', CType: int.

Definition at line 565 of file CL11.java.

◆ CL_INVALID_ARG_VALUE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_ARG_VALUE = -50
static

Define "CL_INVALID_ARG_VALUE" with expression '-50', CType: int.

Definition at line 321 of file CL11.java.

◆ CL_INVALID_BINARY

final int com.jogamp.opencl.llb.CL11.CL_INVALID_BINARY = -42
static

Define "CL_INVALID_BINARY" with expression '-42', CType: int.

Definition at line 559 of file CL11.java.

◆ CL_INVALID_BUFFER_SIZE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_BUFFER_SIZE = -61
static

Define "CL_INVALID_BUFFER_SIZE" with expression '-61', CType: int.

Definition at line 379 of file CL11.java.

◆ CL_INVALID_BUILD_OPTIONS

final int com.jogamp.opencl.llb.CL11.CL_INVALID_BUILD_OPTIONS = -43
static

Define "CL_INVALID_BUILD_OPTIONS" with expression '-43', CType: int.

Definition at line 343 of file CL11.java.

◆ CL_INVALID_COMMAND_QUEUE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_COMMAND_QUEUE = -36
static

Define "CL_INVALID_COMMAND_QUEUE" with expression '-36', CType: int.

Definition at line 535 of file CL11.java.

◆ CL_INVALID_CONTEXT

final int com.jogamp.opencl.llb.CL11.CL_INVALID_CONTEXT = -34
static

Define "CL_INVALID_CONTEXT" with expression '-34', CType: int.

Definition at line 273 of file CL11.java.

◆ CL_INVALID_DEVICE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_DEVICE = -33
static

Define "CL_INVALID_DEVICE" with expression '-33', CType: int.

Definition at line 647 of file CL11.java.

◆ CL_INVALID_DEVICE_TYPE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_DEVICE_TYPE = -31
static

Define "CL_INVALID_DEVICE_TYPE" with expression '-31', CType: int.

Definition at line 325 of file CL11.java.

◆ CL_INVALID_EVENT

final int com.jogamp.opencl.llb.CL11.CL_INVALID_EVENT = -58
static

Define "CL_INVALID_EVENT" with expression '-58', CType: int.

Definition at line 399 of file CL11.java.

◆ CL_INVALID_EVENT_WAIT_LIST

final int com.jogamp.opencl.llb.CL11.CL_INVALID_EVENT_WAIT_LIST = -57
static

Define "CL_INVALID_EVENT_WAIT_LIST" with expression '-57', CType: int.

Definition at line 575 of file CL11.java.

◆ CL_INVALID_GL_OBJECT

final int com.jogamp.opencl.llb.CL11.CL_INVALID_GL_OBJECT = -60
static

Define "CL_INVALID_GL_OBJECT" with expression '-60', CType: int.

Definition at line 733 of file CL11.java.

◆ CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR

final int com.jogamp.opencl.llb.CL11.CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR = -1000
static

Define "CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR" with expression '-1000', CType: int.

Definition at line 729 of file CL11.java.

◆ CL_INVALID_GLOBAL_OFFSET

final int com.jogamp.opencl.llb.CL11.CL_INVALID_GLOBAL_OFFSET = -56
static

Define "CL_INVALID_GLOBAL_OFFSET" with expression '-56', CType: int.

Definition at line 713 of file CL11.java.

◆ CL_INVALID_GLOBAL_WORK_SIZE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_GLOBAL_WORK_SIZE = -63
static

Define "CL_INVALID_GLOBAL_WORK_SIZE" with expression '-63', CType: int.

Definition at line 39 of file CL11.java.

◆ CL_INVALID_HOST_PTR

final int com.jogamp.opencl.llb.CL11.CL_INVALID_HOST_PTR = -37
static

Define "CL_INVALID_HOST_PTR" with expression '-37', CType: int.

Definition at line 629 of file CL11.java.

◆ CL_INVALID_IMAGE_FORMAT_DESCRIPTOR

final int com.jogamp.opencl.llb.CL11.CL_INVALID_IMAGE_FORMAT_DESCRIPTOR = -39
static

Define "CL_INVALID_IMAGE_FORMAT_DESCRIPTOR" with expression '-39', CType: int.

Definition at line 745 of file CL11.java.

◆ CL_INVALID_IMAGE_SIZE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_IMAGE_SIZE = -40
static

Define "CL_INVALID_IMAGE_SIZE" with expression '-40', CType: int.

Definition at line 609 of file CL11.java.

◆ CL_INVALID_KERNEL

final int com.jogamp.opencl.llb.CL11.CL_INVALID_KERNEL = -48
static

Define "CL_INVALID_KERNEL" with expression '-48', CType: int.

Definition at line 159 of file CL11.java.

◆ CL_INVALID_KERNEL_ARGS

final int com.jogamp.opencl.llb.CL11.CL_INVALID_KERNEL_ARGS = -52
static

Define "CL_INVALID_KERNEL_ARGS" with expression '-52', CType: int.

Definition at line 79 of file CL11.java.

◆ CL_INVALID_KERNEL_DEFINITION

final int com.jogamp.opencl.llb.CL11.CL_INVALID_KERNEL_DEFINITION = -47
static

Define "CL_INVALID_KERNEL_DEFINITION" with expression '-47', CType: int.

Definition at line 707 of file CL11.java.

◆ CL_INVALID_KERNEL_NAME

final int com.jogamp.opencl.llb.CL11.CL_INVALID_KERNEL_NAME = -46
static

Define "CL_INVALID_KERNEL_NAME" with expression '-46', CType: int.

Definition at line 483 of file CL11.java.

◆ CL_INVALID_MEM_OBJECT

final int com.jogamp.opencl.llb.CL11.CL_INVALID_MEM_OBJECT = -38
static

Define "CL_INVALID_MEM_OBJECT" with expression '-38', CType: int.

Definition at line 799 of file CL11.java.

◆ CL_INVALID_MIP_LEVEL

final int com.jogamp.opencl.llb.CL11.CL_INVALID_MIP_LEVEL = -62
static

Define "CL_INVALID_MIP_LEVEL" with expression '-62', CType: int.

Definition at line 111 of file CL11.java.

◆ CL_INVALID_OPERATION

final int com.jogamp.opencl.llb.CL11.CL_INVALID_OPERATION = -59
static

Define "CL_INVALID_OPERATION" with expression '-59', CType: int.

Definition at line 681 of file CL11.java.

◆ CL_INVALID_PARTITION_COUNT_EXT

final int com.jogamp.opencl.llb.CL11.CL_INVALID_PARTITION_COUNT_EXT = -1058
static

Define "CL_INVALID_PARTITION_COUNT_EXT" with expression '-1058', CType: int.

Definition at line 311 of file CL11.java.

◆ CL_INVALID_PARTITION_NAME_EXT

final int com.jogamp.opencl.llb.CL11.CL_INVALID_PARTITION_NAME_EXT = -1059
static

Define "CL_INVALID_PARTITION_NAME_EXT" with expression '-1059', CType: int.

Definition at line 105 of file CL11.java.

◆ CL_INVALID_PLATFORM

final int com.jogamp.opencl.llb.CL11.CL_INVALID_PLATFORM = -32
static

Define "CL_INVALID_PLATFORM" with expression '-32', CType: int.

Definition at line 149 of file CL11.java.

◆ CL_INVALID_PROGRAM

final int com.jogamp.opencl.llb.CL11.CL_INVALID_PROGRAM = -44
static

Define "CL_INVALID_PROGRAM" with expression '-44', CType: int.

Definition at line 603 of file CL11.java.

◆ CL_INVALID_PROGRAM_EXECUTABLE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_PROGRAM_EXECUTABLE = -45
static

Define "CL_INVALID_PROGRAM_EXECUTABLE" with expression '-45', CType: int.

Definition at line 203 of file CL11.java.

◆ CL_INVALID_PROPERTY

final int com.jogamp.opencl.llb.CL11.CL_INVALID_PROPERTY = -64
static

Define "CL_INVALID_PROPERTY" with expression '-64', CType: int.

Definition at line 669 of file CL11.java.

◆ CL_INVALID_QUEUE_PROPERTIES

final int com.jogamp.opencl.llb.CL11.CL_INVALID_QUEUE_PROPERTIES = -35
static

Define "CL_INVALID_QUEUE_PROPERTIES" with expression '-35', CType: int.

Definition at line 761 of file CL11.java.

◆ CL_INVALID_SAMPLER

final int com.jogamp.opencl.llb.CL11.CL_INVALID_SAMPLER = -41
static

Define "CL_INVALID_SAMPLER" with expression '-41', CType: int.

Definition at line 257 of file CL11.java.

◆ CL_INVALID_VALUE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_VALUE = -30
static

Define "CL_INVALID_VALUE" with expression '-30', CType: int.

Definition at line 349 of file CL11.java.

◆ CL_INVALID_WORK_DIMENSION

final int com.jogamp.opencl.llb.CL11.CL_INVALID_WORK_DIMENSION = -53
static

Define "CL_INVALID_WORK_DIMENSION" with expression '-53', CType: int.

Definition at line 651 of file CL11.java.

◆ CL_INVALID_WORK_GROUP_SIZE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_WORK_GROUP_SIZE = -54
static

Define "CL_INVALID_WORK_GROUP_SIZE" with expression '-54', CType: int.

Definition at line 437 of file CL11.java.

◆ CL_INVALID_WORK_ITEM_SIZE

final int com.jogamp.opencl.llb.CL11.CL_INVALID_WORK_ITEM_SIZE = -55
static

Define "CL_INVALID_WORK_ITEM_SIZE" with expression '-55', CType: int.

Definition at line 37 of file CL11.java.

◆ CL_KERNEL_COMPILE_WORK_GROUP_SIZE

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_COMPILE_WORK_GROUP_SIZE = 0x11b1
static

Define "CL_KERNEL_COMPILE_WORK_GROUP_SIZE" with expression '0x11B1', CType: int.

Definition at line 473 of file CL11.java.

◆ CL_KERNEL_CONTEXT

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_CONTEXT = 0x1193
static

Define "CL_KERNEL_CONTEXT" with expression '0x1193', CType: int.

Definition at line 57 of file CL11.java.

◆ CL_KERNEL_FUNCTION_NAME

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_FUNCTION_NAME = 0x1190
static

Define "CL_KERNEL_FUNCTION_NAME" with expression '0x1190', CType: int.

Definition at line 373 of file CL11.java.

◆ CL_KERNEL_LOCAL_MEM_SIZE

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_LOCAL_MEM_SIZE = 0x11b2
static

Define "CL_KERNEL_LOCAL_MEM_SIZE" with expression '0x11B2', CType: int.

Definition at line 215 of file CL11.java.

◆ CL_KERNEL_NUM_ARGS

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_NUM_ARGS = 0x1191
static

Define "CL_KERNEL_NUM_ARGS" with expression '0x1191', CType: int.

Definition at line 137 of file CL11.java.

◆ CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE = 0x11b3
static

Define "CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE" with expression '0x11B3', CType: int.

Definition at line 253 of file CL11.java.

◆ CL_KERNEL_PRIVATE_MEM_SIZE

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_PRIVATE_MEM_SIZE = 0x11b4
static

Define "CL_KERNEL_PRIVATE_MEM_SIZE" with expression '0x11B4', CType: int.

Definition at line 711 of file CL11.java.

◆ CL_KERNEL_PROGRAM

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_PROGRAM = 0x1194
static

Define "CL_KERNEL_PROGRAM" with expression '0x1194', CType: int.

Definition at line 403 of file CL11.java.

◆ CL_KERNEL_REFERENCE_COUNT

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_REFERENCE_COUNT = 0x1192
static

Define "CL_KERNEL_REFERENCE_COUNT" with expression '0x1192', CType: int.

Definition at line 695 of file CL11.java.

◆ CL_KERNEL_WORK_GROUP_SIZE

final int com.jogamp.opencl.llb.CL11.CL_KERNEL_WORK_GROUP_SIZE = 0x11b0
static

Define "CL_KERNEL_WORK_GROUP_SIZE" with expression '0x11B0', CType: int.

Definition at line 639 of file CL11.java.

◆ cl_khr_gl_sharing

final int com.jogamp.opencl.llb.CL11.cl_khr_gl_sharing = 0x1
static

Define "cl_khr_gl_sharing" with expression '1', CType: int.

Definition at line 459 of file CL11.java.

◆ cl_khr_icd

final int com.jogamp.opencl.llb.CL11.cl_khr_icd = 0x1
static

Define "cl_khr_icd" with expression '1', CType: int.

Definition at line 377 of file CL11.java.

◆ CL_LOCAL

final int com.jogamp.opencl.llb.CL11.CL_LOCAL = 0x1
static

Define "CL_LOCAL" with expression '0x1', CType: int.

Definition at line 279 of file CL11.java.

◆ CL_LUMINANCE

final int com.jogamp.opencl.llb.CL11.CL_LUMINANCE = 0x10b9
static

Define "CL_LUMINANCE" with expression '0x10B9', CType: int.

Definition at line 543 of file CL11.java.

◆ CL_M_1_PI

final float com.jogamp.opencl.llb.CL11.CL_M_1_PI = 0.3183098861837907f
static

Define "CL_M_1_PI" with expression '0.318309886183790691216', CType: float.

Definition at line 197 of file CL11.java.

◆ CL_M_1_PI_F

final float com.jogamp.opencl.llb.CL11.CL_M_1_PI_F = 0.31830987334251f
static

Define "CL_M_1_PI_F" with expression '0.31830987334251f', CType: float.

Definition at line 475 of file CL11.java.

◆ CL_M_2_PI

final float com.jogamp.opencl.llb.CL11.CL_M_2_PI = 0.6366197723675814f
static

Define "CL_M_2_PI" with expression '0.636619772367581382433', CType: float.

Definition at line 131 of file CL11.java.

◆ CL_M_2_PI_F

final float com.jogamp.opencl.llb.CL11.CL_M_2_PI_F = 0.63661974668503f
static

Define "CL_M_2_PI_F" with expression '0.63661974668503f', CType: float.

Definition at line 709 of file CL11.java.

◆ CL_M_2_SQRTPI

final float com.jogamp.opencl.llb.CL11.CL_M_2_SQRTPI = 1.1283791670955126f
static

Define "CL_M_2_SQRTPI" with expression '1.128379167095512558561', CType: float.

Definition at line 427 of file CL11.java.

◆ CL_M_2_SQRTPI_F

final float com.jogamp.opencl.llb.CL11.CL_M_2_SQRTPI_F = 1.1283792257309f
static

Define "CL_M_2_SQRTPI_F" with expression '1.12837922573090f', CType: float.

Definition at line 71 of file CL11.java.

◆ CL_M_E

final float com.jogamp.opencl.llb.CL11.CL_M_E = 2.718281828459045f
static

Define "CL_M_E" with expression '2.718281828459045090796', CType: float.

Definition at line 277 of file CL11.java.

◆ CL_M_E_F

final float com.jogamp.opencl.llb.CL11.CL_M_E_F = 2.71828174591064f
static

Define "CL_M_E_F" with expression '2.71828174591064f', CType: float.

Definition at line 513 of file CL11.java.

◆ CL_M_LN10

final float com.jogamp.opencl.llb.CL11.CL_M_LN10 = 2.302585092994046f
static

Define "CL_M_LN10" with expression '2.302585092994045901094', CType: float.

Definition at line 569 of file CL11.java.

◆ CL_M_LN10_F

final float com.jogamp.opencl.llb.CL11.CL_M_LN10_F = 2.30258512496948f
static

Define "CL_M_LN10_F" with expression '2.30258512496948f', CType: float.

Definition at line 167 of file CL11.java.

◆ CL_M_LN2

final float com.jogamp.opencl.llb.CL11.CL_M_LN2 = 0.6931471805599453f
static

Define "CL_M_LN2" with expression '0.693147180559945286227', CType: float.

Definition at line 529 of file CL11.java.

◆ CL_M_LN2_F

final float com.jogamp.opencl.llb.CL11.CL_M_LN2_F = 0.6931471824646f
static

Define "CL_M_LN2_F" with expression '0.69314718246460f', CType: float.

Definition at line 347 of file CL11.java.

◆ CL_M_LOG10E

final float com.jogamp.opencl.llb.CL11.CL_M_LOG10E = 0.4342944819032518f
static

Define "CL_M_LOG10E" with expression '0.434294481903251816668', CType: float.

Definition at line 601 of file CL11.java.

◆ CL_M_LOG10E_F

final float com.jogamp.opencl.llb.CL11.CL_M_LOG10E_F = 0.4342944920063f
static

Define "CL_M_LOG10E_F" with expression '0.43429449200630f', CType: float.

Definition at line 777 of file CL11.java.

◆ CL_M_LOG2E

final float com.jogamp.opencl.llb.CL11.CL_M_LOG2E = 1.4426950408889634f
static

Define "CL_M_LOG2E" with expression '1.442695040888963387005', CType: float.

Definition at line 795 of file CL11.java.

◆ CL_M_LOG2E_F

final float com.jogamp.opencl.llb.CL11.CL_M_LOG2E_F = 1.44269502162933f
static

Define "CL_M_LOG2E_F" with expression '1.44269502162933f', CType: float.

Definition at line 597 of file CL11.java.

◆ CL_M_PI

final float com.jogamp.opencl.llb.CL11.CL_M_PI = 3.141592653589793f
static

Define "CL_M_PI" with expression '3.141592653589793115998', CType: float.

Definition at line 447 of file CL11.java.

◆ CL_M_PI_2

final float com.jogamp.opencl.llb.CL11.CL_M_PI_2 = 1.5707963267948966f
static

Define "CL_M_PI_2" with expression '1.570796326794896557999', CType: float.

Definition at line 509 of file CL11.java.

◆ CL_M_PI_2_F

final float com.jogamp.opencl.llb.CL11.CL_M_PI_2_F = 1.57079637050629f
static

Define "CL_M_PI_2_F" with expression '1.57079637050629f', CType: float.

Definition at line 151 of file CL11.java.

◆ CL_M_PI_4

final float com.jogamp.opencl.llb.CL11.CL_M_PI_4 = 0.7853981633974483f
static

Define "CL_M_PI_4" with expression '0.785398163397448278999', CType: float.

Definition at line 505 of file CL11.java.

◆ CL_M_PI_4_F

final float com.jogamp.opencl.llb.CL11.CL_M_PI_4_F = 0.78539818525314f
static

Define "CL_M_PI_4_F" with expression '0.78539818525314f', CType: float.

Definition at line 235 of file CL11.java.

◆ CL_M_PI_F

final float com.jogamp.opencl.llb.CL11.CL_M_PI_F = 3.14159274101257f
static

Define "CL_M_PI_F" with expression '3.14159274101257f', CType: float.

Definition at line 503 of file CL11.java.

◆ CL_M_SQRT1_2

final float com.jogamp.opencl.llb.CL11.CL_M_SQRT1_2 = 0.7071067811865476f
static

Define "CL_M_SQRT1_2" with expression '0.707106781186547572737', CType: float.

Definition at line 301 of file CL11.java.

◆ CL_M_SQRT1_2_F

final float com.jogamp.opencl.llb.CL11.CL_M_SQRT1_2_F = 0.70710676908493f
static

Define "CL_M_SQRT1_2_F" with expression '0.70710676908493f', CType: float.

Definition at line 517 of file CL11.java.

◆ CL_M_SQRT2

final float com.jogamp.opencl.llb.CL11.CL_M_SQRT2 = 1.4142135623730951f
static

Define "CL_M_SQRT2" with expression '1.414213562373095145475', CType: float.

Definition at line 631 of file CL11.java.

◆ CL_M_SQRT2_F

final float com.jogamp.opencl.llb.CL11.CL_M_SQRT2_F = 1.41421353816986f
static

Define "CL_M_SQRT2_F" with expression '1.41421353816986f', CType: float.

Definition at line 267 of file CL11.java.

◆ CL_MAP_FAILURE

final int com.jogamp.opencl.llb.CL11.CL_MAP_FAILURE = -12
static

Define "CL_MAP_FAILURE" with expression '-12', CType: int.

Definition at line 189 of file CL11.java.

◆ CL_MAP_READ

final int com.jogamp.opencl.llb.CL11.CL_MAP_READ = ( 0x1 << 0x0 )
static

Define "CL_MAP_READ" with expression '(1 << 0)', CType: int.

Definition at line 801 of file CL11.java.

◆ CL_MAP_WRITE

final int com.jogamp.opencl.llb.CL11.CL_MAP_WRITE = ( 0x1 << 0x1 )
static

Define "CL_MAP_WRITE" with expression '(1 << 1)', CType: int.

Definition at line 173 of file CL11.java.

◆ CL_MAXFLOAT

final float com.jogamp.opencl.llb.CL11.CL_MAXFLOAT = 3.4028234663852886E38f
static

Define "CL_MAXFLOAT" with expression '0x1.fffffep127f', CType: float.

Definition at line 207 of file CL11.java.

◆ CL_MEM_ALLOC_HOST_PTR

final int com.jogamp.opencl.llb.CL11.CL_MEM_ALLOC_HOST_PTR = ( 0x1 << 0x4 )
static

Define "CL_MEM_ALLOC_HOST_PTR" with expression '(1 << 4)', CType: int.

Definition at line 685 of file CL11.java.

◆ CL_MEM_ASSOCIATED_MEMOBJECT

final int com.jogamp.opencl.llb.CL11.CL_MEM_ASSOCIATED_MEMOBJECT = 0x1107
static

Define "CL_MEM_ASSOCIATED_MEMOBJECT" with expression '0x1107', CType: int.

Definition at line 659 of file CL11.java.

◆ CL_MEM_CONTEXT

final int com.jogamp.opencl.llb.CL11.CL_MEM_CONTEXT = 0x1106
static

Define "CL_MEM_CONTEXT" with expression '0x1106', CType: int.

Definition at line 493 of file CL11.java.

◆ CL_MEM_COPY_HOST_PTR

final int com.jogamp.opencl.llb.CL11.CL_MEM_COPY_HOST_PTR = ( 0x1 << 0x5 )
static

Define "CL_MEM_COPY_HOST_PTR" with expression '(1 << 5)', CType: int.

Definition at line 641 of file CL11.java.

◆ CL_MEM_COPY_OVERLAP

final int com.jogamp.opencl.llb.CL11.CL_MEM_COPY_OVERLAP = -8
static

Define "CL_MEM_COPY_OVERLAP" with expression '-8', CType: int.

Definition at line 191 of file CL11.java.

◆ CL_MEM_FLAGS

final int com.jogamp.opencl.llb.CL11.CL_MEM_FLAGS = 0x1101
static

Define "CL_MEM_FLAGS" with expression '0x1101', CType: int.

Definition at line 269 of file CL11.java.

◆ CL_MEM_HOST_PTR

final int com.jogamp.opencl.llb.CL11.CL_MEM_HOST_PTR = 0x1103
static

Define "CL_MEM_HOST_PTR" with expression '0x1103', CType: int.

Definition at line 97 of file CL11.java.

◆ CL_MEM_MAP_COUNT

final int com.jogamp.opencl.llb.CL11.CL_MEM_MAP_COUNT = 0x1104
static

Define "CL_MEM_MAP_COUNT" with expression '0x1104', CType: int.

Definition at line 519 of file CL11.java.

◆ CL_MEM_OBJECT_ALLOCATION_FAILURE

final int com.jogamp.opencl.llb.CL11.CL_MEM_OBJECT_ALLOCATION_FAILURE = -4
static

Define "CL_MEM_OBJECT_ALLOCATION_FAILURE" with expression '-4', CType: int.

Definition at line 45 of file CL11.java.

◆ CL_MEM_OBJECT_BUFFER

final int com.jogamp.opencl.llb.CL11.CL_MEM_OBJECT_BUFFER = 0x10f0
static

Define "CL_MEM_OBJECT_BUFFER" with expression '0x10F0', CType: int.

Definition at line 727 of file CL11.java.

◆ CL_MEM_OBJECT_IMAGE2D

final int com.jogamp.opencl.llb.CL11.CL_MEM_OBJECT_IMAGE2D = 0x10f1
static

Define "CL_MEM_OBJECT_IMAGE2D" with expression '0x10F1', CType: int.

Definition at line 701 of file CL11.java.

◆ CL_MEM_OBJECT_IMAGE3D

final int com.jogamp.opencl.llb.CL11.CL_MEM_OBJECT_IMAGE3D = 0x10f2
static

Define "CL_MEM_OBJECT_IMAGE3D" with expression '0x10F2', CType: int.

Definition at line 683 of file CL11.java.

◆ CL_MEM_OFFSET

final int com.jogamp.opencl.llb.CL11.CL_MEM_OFFSET = 0x1108
static

Define "CL_MEM_OFFSET" with expression '0x1108', CType: int.

Definition at line 563 of file CL11.java.

◆ CL_MEM_READ_ONLY

final int com.jogamp.opencl.llb.CL11.CL_MEM_READ_ONLY = ( 0x1 << 0x2 )
static

Define "CL_MEM_READ_ONLY" with expression '(1 << 2)', CType: int.

Definition at line 75 of file CL11.java.

◆ CL_MEM_READ_WRITE

final int com.jogamp.opencl.llb.CL11.CL_MEM_READ_WRITE = ( 0x1 << 0x0 )
static

Define "CL_MEM_READ_WRITE" with expression '(1 << 0)', CType: int.

Definition at line 797 of file CL11.java.

◆ CL_MEM_REFERENCE_COUNT

final int com.jogamp.opencl.llb.CL11.CL_MEM_REFERENCE_COUNT = 0x1105
static

Define "CL_MEM_REFERENCE_COUNT" with expression '0x1105', CType: int.

Definition at line 763 of file CL11.java.

◆ CL_MEM_SIZE

final int com.jogamp.opencl.llb.CL11.CL_MEM_SIZE = 0x1102
static

Define "CL_MEM_SIZE" with expression '0x1102', CType: int.

Definition at line 811 of file CL11.java.

◆ CL_MEM_TYPE

final int com.jogamp.opencl.llb.CL11.CL_MEM_TYPE = 0x1100
static

Define "CL_MEM_TYPE" with expression '0x1100', CType: int.

Definition at line 435 of file CL11.java.

◆ CL_MEM_USE_HOST_PTR

final int com.jogamp.opencl.llb.CL11.CL_MEM_USE_HOST_PTR = ( 0x1 << 0x3 )
static

Define "CL_MEM_USE_HOST_PTR" with expression '(1 << 3)', CType: int.

Definition at line 313 of file CL11.java.

◆ CL_MEM_WRITE_ONLY

final int com.jogamp.opencl.llb.CL11.CL_MEM_WRITE_ONLY = ( 0x1 << 0x1 )
static

Define "CL_MEM_WRITE_ONLY" with expression '(1 << 1)', CType: int.

Definition at line 185 of file CL11.java.

◆ CL_MISALIGNED_SUB_BUFFER_OFFSET

final int com.jogamp.opencl.llb.CL11.CL_MISALIGNED_SUB_BUFFER_OFFSET = -13
static

Define "CL_MISALIGNED_SUB_BUFFER_OFFSET" with expression '-13', CType: int.

Definition at line 735 of file CL11.java.

◆ CL_NONE

final int com.jogamp.opencl.llb.CL11.CL_NONE = 0x0
static

Define "CL_NONE" with expression '0x0', CType: int.

Definition at line 465 of file CL11.java.

◆ CL_OUT_OF_HOST_MEMORY

final int com.jogamp.opencl.llb.CL11.CL_OUT_OF_HOST_MEMORY = -6
static

Define "CL_OUT_OF_HOST_MEMORY" with expression '-6', CType: int.

Definition at line 793 of file CL11.java.

◆ CL_OUT_OF_RESOURCES

final int com.jogamp.opencl.llb.CL11.CL_OUT_OF_RESOURCES = -5
static

Define "CL_OUT_OF_RESOURCES" with expression '-5', CType: int.

Definition at line 141 of file CL11.java.

◆ CL_PLATFORM_EXTENSIONS

final int com.jogamp.opencl.llb.CL11.CL_PLATFORM_EXTENSIONS = 0x904
static

Define "CL_PLATFORM_EXTENSIONS" with expression '0x0904', CType: int.

Definition at line 507 of file CL11.java.

◆ CL_PLATFORM_ICD_SUFFIX_KHR

final int com.jogamp.opencl.llb.CL11.CL_PLATFORM_ICD_SUFFIX_KHR = 0x920
static

Define "CL_PLATFORM_ICD_SUFFIX_KHR" with expression '0x0920', CType: int.

Definition at line 717 of file CL11.java.

◆ CL_PLATFORM_NAME

final int com.jogamp.opencl.llb.CL11.CL_PLATFORM_NAME = 0x902
static

Define "CL_PLATFORM_NAME" with expression '0x0902', CType: int.

Definition at line 585 of file CL11.java.

◆ CL_PLATFORM_NOT_FOUND_KHR

final int com.jogamp.opencl.llb.CL11.CL_PLATFORM_NOT_FOUND_KHR = -1001
static

Define "CL_PLATFORM_NOT_FOUND_KHR" with expression '-1001', CType: int.

Definition at line 375 of file CL11.java.

◆ CL_PLATFORM_PROFILE

final int com.jogamp.opencl.llb.CL11.CL_PLATFORM_PROFILE = 0x900
static

Define "CL_PLATFORM_PROFILE" with expression '0x0900', CType: int.

Definition at line 405 of file CL11.java.

◆ CL_PLATFORM_VENDOR

final int com.jogamp.opencl.llb.CL11.CL_PLATFORM_VENDOR = 0x903
static

Define "CL_PLATFORM_VENDOR" with expression '0x0903', CType: int.

Definition at line 237 of file CL11.java.

◆ CL_PLATFORM_VERSION

final int com.jogamp.opencl.llb.CL11.CL_PLATFORM_VERSION = 0x901
static

Define "CL_PLATFORM_VERSION" with expression '0x0901', CType: int.

Definition at line 139 of file CL11.java.

◆ CL_PRINTF_BUFFERSIZE_ARM

final int com.jogamp.opencl.llb.CL11.CL_PRINTF_BUFFERSIZE_ARM = 0x40b1
static

Define "CL_PRINTF_BUFFERSIZE_ARM" with expression '0x40B1', CType: int.

Definition at line 595 of file CL11.java.

◆ CL_PRINTF_CALLBACK_ARM

final int com.jogamp.opencl.llb.CL11.CL_PRINTF_CALLBACK_ARM = 0x40b0
static

Define "CL_PRINTF_CALLBACK_ARM" with expression '0x40B0', CType: int.

Definition at line 415 of file CL11.java.

◆ CL_PROFILING_COMMAND_END

final int com.jogamp.opencl.llb.CL11.CL_PROFILING_COMMAND_END = 0x1283
static

Define "CL_PROFILING_COMMAND_END" with expression '0x1283', CType: int.

Definition at line 179 of file CL11.java.

◆ CL_PROFILING_COMMAND_QUEUED

final int com.jogamp.opencl.llb.CL11.CL_PROFILING_COMMAND_QUEUED = 0x1280
static

Define "CL_PROFILING_COMMAND_QUEUED" with expression '0x1280', CType: int.

Definition at line 201 of file CL11.java.

◆ CL_PROFILING_COMMAND_START

final int com.jogamp.opencl.llb.CL11.CL_PROFILING_COMMAND_START = 0x1282
static

Define "CL_PROFILING_COMMAND_START" with expression '0x1282', CType: int.

Definition at line 341 of file CL11.java.

◆ CL_PROFILING_COMMAND_SUBMIT

final int com.jogamp.opencl.llb.CL11.CL_PROFILING_COMMAND_SUBMIT = 0x1281
static

Define "CL_PROFILING_COMMAND_SUBMIT" with expression '0x1281', CType: int.

Definition at line 195 of file CL11.java.

◆ CL_PROFILING_INFO_NOT_AVAILABLE

final int com.jogamp.opencl.llb.CL11.CL_PROFILING_INFO_NOT_AVAILABLE = -7
static

Define "CL_PROFILING_INFO_NOT_AVAILABLE" with expression '-7', CType: int.

Definition at line 73 of file CL11.java.

◆ CL_PROGRAM_BINARIES

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_BINARIES = 0x1166
static

Define "CL_PROGRAM_BINARIES" with expression '0x1166', CType: int.

Definition at line 109 of file CL11.java.

◆ CL_PROGRAM_BINARY_SIZES

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_BINARY_SIZES = 0x1165
static

Define "CL_PROGRAM_BINARY_SIZES" with expression '0x1165', CType: int.

Definition at line 643 of file CL11.java.

◆ CL_PROGRAM_BUILD_LOG

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_BUILD_LOG = 0x1183
static

Define "CL_PROGRAM_BUILD_LOG" with expression '0x1183', CType: int.

Definition at line 573 of file CL11.java.

◆ CL_PROGRAM_BUILD_OPTIONS

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_BUILD_OPTIONS = 0x1182
static

Define "CL_PROGRAM_BUILD_OPTIONS" with expression '0x1182', CType: int.

Definition at line 153 of file CL11.java.

◆ CL_PROGRAM_BUILD_STATUS

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_BUILD_STATUS = 0x1181
static

Define "CL_PROGRAM_BUILD_STATUS" with expression '0x1181', CType: int.

Definition at line 47 of file CL11.java.

◆ CL_PROGRAM_CONTEXT

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_CONTEXT = 0x1161
static

Define "CL_PROGRAM_CONTEXT" with expression '0x1161', CType: int.

Definition at line 511 of file CL11.java.

◆ CL_PROGRAM_DEVICES

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_DEVICES = 0x1163
static

Define "CL_PROGRAM_DEVICES" with expression '0x1163', CType: int.

Definition at line 607 of file CL11.java.

◆ CL_PROGRAM_NUM_DEVICES

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_NUM_DEVICES = 0x1162
static

Define "CL_PROGRAM_NUM_DEVICES" with expression '0x1162', CType: int.

Definition at line 557 of file CL11.java.

◆ CL_PROGRAM_REFERENCE_COUNT

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_REFERENCE_COUNT = 0x1160
static

Define "CL_PROGRAM_REFERENCE_COUNT" with expression '0x1160', CType: int.

Definition at line 129 of file CL11.java.

◆ CL_PROGRAM_SOURCE

final int com.jogamp.opencl.llb.CL11.CL_PROGRAM_SOURCE = 0x1164
static

Define "CL_PROGRAM_SOURCE" with expression '0x1164', CType: int.

Definition at line 231 of file CL11.java.

◆ CL_QUEUE_CONTEXT

final int com.jogamp.opencl.llb.CL11.CL_QUEUE_CONTEXT = 0x1090
static

Define "CL_QUEUE_CONTEXT" with expression '0x1090', CType: int.

Definition at line 723 of file CL11.java.

◆ CL_QUEUE_DEVICE

final int com.jogamp.opencl.llb.CL11.CL_QUEUE_DEVICE = 0x1091
static

Define "CL_QUEUE_DEVICE" with expression '0x1091', CType: int.

Definition at line 619 of file CL11.java.

◆ CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE

final int com.jogamp.opencl.llb.CL11.CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE = ( 0x1 << 0x0 )
static

Define "CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE" with expression '(1 << 0)', CType: int.

Definition at line 539 of file CL11.java.

◆ CL_QUEUE_PROFILING_ENABLE

final int com.jogamp.opencl.llb.CL11.CL_QUEUE_PROFILING_ENABLE = ( 0x1 << 0x1 )
static

Define "CL_QUEUE_PROFILING_ENABLE" with expression '(1 << 1)', CType: int.

Definition at line 165 of file CL11.java.

◆ CL_QUEUE_PROPERTIES

final int com.jogamp.opencl.llb.CL11.CL_QUEUE_PROPERTIES = 0x1093
static

Define "CL_QUEUE_PROPERTIES" with expression '0x1093', CType: int.

Definition at line 199 of file CL11.java.

◆ CL_QUEUE_REFERENCE_COUNT

final int com.jogamp.opencl.llb.CL11.CL_QUEUE_REFERENCE_COUNT = 0x1092
static

Define "CL_QUEUE_REFERENCE_COUNT" with expression '0x1092', CType: int.

Definition at line 805 of file CL11.java.

◆ CL_QUEUED

final int com.jogamp.opencl.llb.CL11.CL_QUEUED = 0x3
static

Define "CL_QUEUED" with expression '0x3', CType: int.

Definition at line 675 of file CL11.java.

◆ CL_R

final int com.jogamp.opencl.llb.CL11.CL_R = 0x10b0
static

Define "CL_R" with expression '0x10B0', CType: int.

Definition at line 393 of file CL11.java.

◆ CL_RA

final int com.jogamp.opencl.llb.CL11.CL_RA = 0x10b3
static

Define "CL_RA" with expression '0x10B3', CType: int.

Definition at line 451 of file CL11.java.

◆ CL_READ_ONLY_CACHE

final int com.jogamp.opencl.llb.CL11.CL_READ_ONLY_CACHE = 0x1
static

Define "CL_READ_ONLY_CACHE" with expression '0x1', CType: int.

Definition at line 407 of file CL11.java.

◆ CL_READ_WRITE_CACHE

final int com.jogamp.opencl.llb.CL11.CL_READ_WRITE_CACHE = 0x2
static

Define "CL_READ_WRITE_CACHE" with expression '0x2', CType: int.

Definition at line 589 of file CL11.java.

◆ CL_RG

final int com.jogamp.opencl.llb.CL11.CL_RG = 0x10b2
static

Define "CL_RG" with expression '0x10B2', CType: int.

Definition at line 469 of file CL11.java.

◆ CL_RGB

final int com.jogamp.opencl.llb.CL11.CL_RGB = 0x10b4
static

Define "CL_RGB" with expression '0x10B4', CType: int.

Definition at line 293 of file CL11.java.

◆ CL_RGBA

final int com.jogamp.opencl.llb.CL11.CL_RGBA = 0x10b5
static

Define "CL_RGBA" with expression '0x10B5', CType: int.

Definition at line 55 of file CL11.java.

◆ CL_RGBx

final int com.jogamp.opencl.llb.CL11.CL_RGBx = 0x10bc
static

Define "CL_RGBx" with expression '0x10BC', CType: int.

Definition at line 187 of file CL11.java.

◆ CL_RGx

final int com.jogamp.opencl.llb.CL11.CL_RGx = 0x10bb
static

Define "CL_RGx" with expression '0x10BB', CType: int.

Definition at line 593 of file CL11.java.

◆ CL_RUNNING

final int com.jogamp.opencl.llb.CL11.CL_RUNNING = 0x1
static

Define "CL_RUNNING" with expression '0x1', CType: int.

Definition at line 157 of file CL11.java.

◆ CL_Rx

final int com.jogamp.opencl.llb.CL11.CL_Rx = 0x10ba
static

Define "CL_Rx" with expression '0x10BA', CType: int.

Definition at line 481 of file CL11.java.

◆ CL_SAMPLER_ADDRESSING_MODE

final int com.jogamp.opencl.llb.CL11.CL_SAMPLER_ADDRESSING_MODE = 0x1153
static

Define "CL_SAMPLER_ADDRESSING_MODE" with expression '0x1153', CType: int.

Definition at line 49 of file CL11.java.

◆ CL_SAMPLER_CONTEXT

final int com.jogamp.opencl.llb.CL11.CL_SAMPLER_CONTEXT = 0x1151
static

Define "CL_SAMPLER_CONTEXT" with expression '0x1151', CType: int.

Definition at line 771 of file CL11.java.

◆ CL_SAMPLER_FILTER_MODE

final int com.jogamp.opencl.llb.CL11.CL_SAMPLER_FILTER_MODE = 0x1154
static

Define "CL_SAMPLER_FILTER_MODE" with expression '0x1154', CType: int.

Definition at line 59 of file CL11.java.

◆ CL_SAMPLER_NORMALIZED_COORDS

final int com.jogamp.opencl.llb.CL11.CL_SAMPLER_NORMALIZED_COORDS = 0x1152
static

Define "CL_SAMPLER_NORMALIZED_COORDS" with expression '0x1152', CType: int.

Definition at line 81 of file CL11.java.

◆ CL_SAMPLER_REFERENCE_COUNT

final int com.jogamp.opencl.llb.CL11.CL_SAMPLER_REFERENCE_COUNT = 0x1150
static

Define "CL_SAMPLER_REFERENCE_COUNT" with expression '0x1150', CType: int.

Definition at line 623 of file CL11.java.

◆ CL_SCHAR_MAX

final int com.jogamp.opencl.llb.CL11.CL_SCHAR_MAX = 0x7f
static

Define "CL_SCHAR_MAX" with expression '127', CType: int.

Definition at line 175 of file CL11.java.

◆ CL_SCHAR_MIN

final int com.jogamp.opencl.llb.CL11.CL_SCHAR_MIN = ( - 0x7f - 0x1 )
static

Define "CL_SCHAR_MIN" with expression '(-127-1)', CType: int.

Definition at line 791 of file CL11.java.

◆ CL_SHRT_MAX

final int com.jogamp.opencl.llb.CL11.CL_SHRT_MAX = 0x7fff
static

Define "CL_SHRT_MAX" with expression '32767', CType: int.

Definition at line 417 of file CL11.java.

◆ CL_SHRT_MIN

final int com.jogamp.opencl.llb.CL11.CL_SHRT_MIN = ( - 0x7fff - 0x1 )
static

Define "CL_SHRT_MIN" with expression '(-32767-1)', CType: int.

Definition at line 635 of file CL11.java.

◆ CL_SIGNED_INT16

final int com.jogamp.opencl.llb.CL11.CL_SIGNED_INT16 = 0x10d8
static

Define "CL_SIGNED_INT16" with expression '0x10D8', CType: int.

Definition at line 531 of file CL11.java.

◆ CL_SIGNED_INT32

final int com.jogamp.opencl.llb.CL11.CL_SIGNED_INT32 = 0x10d9
static

Define "CL_SIGNED_INT32" with expression '0x10D9', CType: int.

Definition at line 581 of file CL11.java.

◆ CL_SIGNED_INT8

final int com.jogamp.opencl.llb.CL11.CL_SIGNED_INT8 = 0x10d7
static

Define "CL_SIGNED_INT8" with expression '0x10D7', CType: int.

Definition at line 357 of file CL11.java.

◆ CL_SNORM_INT16

final int com.jogamp.opencl.llb.CL11.CL_SNORM_INT16 = 0x10d1
static

Define "CL_SNORM_INT16" with expression '0x10D1', CType: int.

Definition at line 743 of file CL11.java.

◆ CL_SNORM_INT8

final int com.jogamp.opencl.llb.CL11.CL_SNORM_INT8 = 0x10d0
static

Define "CL_SNORM_INT8" with expression '0x10D0', CType: int.

Definition at line 43 of file CL11.java.

◆ CL_SUBMITTED

final int com.jogamp.opencl.llb.CL11.CL_SUBMITTED = 0x2
static

Define "CL_SUBMITTED" with expression '0x2', CType: int.

Definition at line 229 of file CL11.java.

◆ CL_SUCCESS

final int com.jogamp.opencl.llb.CL11.CL_SUCCESS = 0x0
static

Define "CL_SUCCESS" with expression '0', CType: int.

Definition at line 327 of file CL11.java.

◆ CL_TRUE

final int com.jogamp.opencl.llb.CL11.CL_TRUE = 0x1
static

Define "CL_TRUE" with expression '1', CType: int.

Definition at line 213 of file CL11.java.

◆ CL_UCHAR_MAX

final int com.jogamp.opencl.llb.CL11.CL_UCHAR_MAX = 0xff
static

Define "CL_UCHAR_MAX" with expression '255', CType: int.

Definition at line 547 of file CL11.java.

◆ CL_UNORM_INT16

final int com.jogamp.opencl.llb.CL11.CL_UNORM_INT16 = 0x10d3
static

Define "CL_UNORM_INT16" with expression '0x10D3', CType: int.

Definition at line 171 of file CL11.java.

◆ CL_UNORM_INT8

final int com.jogamp.opencl.llb.CL11.CL_UNORM_INT8 = 0x10d2
static

Define "CL_UNORM_INT8" with expression '0x10D2', CType: int.

Definition at line 401 of file CL11.java.

◆ CL_UNORM_INT_101010

final int com.jogamp.opencl.llb.CL11.CL_UNORM_INT_101010 = 0x10d6
static

Define "CL_UNORM_INT_101010" with expression '0x10D6', CType: int.

Definition at line 119 of file CL11.java.

◆ CL_UNORM_SHORT_555

final int com.jogamp.opencl.llb.CL11.CL_UNORM_SHORT_555 = 0x10d5
static

Define "CL_UNORM_SHORT_555" with expression '0x10D5', CType: int.

Definition at line 419 of file CL11.java.

◆ CL_UNORM_SHORT_565

final int com.jogamp.opencl.llb.CL11.CL_UNORM_SHORT_565 = 0x10d4
static

Define "CL_UNORM_SHORT_565" with expression '0x10D4', CType: int.

Definition at line 329 of file CL11.java.

◆ CL_UNSIGNED_INT16

final int com.jogamp.opencl.llb.CL11.CL_UNSIGNED_INT16 = 0x10db
static

Define "CL_UNSIGNED_INT16" with expression '0x10DB', CType: int.

Definition at line 397 of file CL11.java.

◆ CL_UNSIGNED_INT32

final int com.jogamp.opencl.llb.CL11.CL_UNSIGNED_INT32 = 0x10dc
static

Define "CL_UNSIGNED_INT32" with expression '0x10DC', CType: int.

Definition at line 389 of file CL11.java.

◆ CL_UNSIGNED_INT8

final int com.jogamp.opencl.llb.CL11.CL_UNSIGNED_INT8 = 0x10da
static

Define "CL_UNSIGNED_INT8" with expression '0x10DA', CType: int.

Definition at line 571 of file CL11.java.

◆ CL_USHRT_MAX

final int com.jogamp.opencl.llb.CL11.CL_USHRT_MAX = 0xffff
static

Define "CL_USHRT_MAX" with expression '65535', CType: int.

Definition at line 741 of file CL11.java.

◆ CL_VERSION_1_0

final int com.jogamp.opencl.llb.CL11.CL_VERSION_1_0 = 0x1
static

Define "CL_VERSION_1_0" with expression '1', CType: int.

Definition at line 145 of file CL11.java.

◆ CL_VERSION_1_1

final int com.jogamp.opencl.llb.CL11.CL_VERSION_1_1 = 0x1
static

Define "CL_VERSION_1_1" with expression '1', CType: int.

Definition at line 143 of file CL11.java.

◆ CL_WGL_HDC_KHR

final int com.jogamp.opencl.llb.CL11.CL_WGL_HDC_KHR = 0x200b
static

Define "CL_WGL_HDC_KHR" with expression '0x200B', CType: int.

Definition at line 645 of file CL11.java.

◆ GLEXT_64_TYPES_DEFINED

final int com.jogamp.opencl.llb.CL11.GLEXT_64_TYPES_DEFINED = 0x1
static

Define "GLEXT_64_TYPES_DEFINED" with expression '1', CType: int.

Definition at line 177 of file CL11.java.

◆ HAS_STDDEF

final int com.jogamp.opencl.llb.CL11.HAS_STDDEF = 0x1
static

Define "HAS_STDDEF" with expression '1', CType: int.

Definition at line 773 of file CL11.java.

◆ KHRONOS_BOOLEAN_ENUM_FORCE_SIZE

final int com.jogamp.opencl.llb.CL11.KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = 0x7fffffff
static

Defined as part of enum type "khronos_boolean_enum_t" with expression '0x7FFFFFFF', CType: int.

Definition at line 35 of file CL11.java.

◆ KHRONOS_FALSE

final int com.jogamp.opencl.llb.CL11.KHRONOS_FALSE = 0x0
static

Defined as part of enum type "khronos_boolean_enum_t" with expression '0', CType: int.

Definition at line 31 of file CL11.java.

◆ KHRONOS_MAX_ENUM

final int com.jogamp.opencl.llb.CL11.KHRONOS_MAX_ENUM = 0x7fffffff
static

Define "KHRONOS_MAX_ENUM" with expression '0x7FFFFFFF', CType: int.

Definition at line 205 of file CL11.java.

◆ KHRONOS_SUPPORT_FLOAT

final int com.jogamp.opencl.llb.CL11.KHRONOS_SUPPORT_FLOAT = 0x1
static

Define "KHRONOS_SUPPORT_FLOAT" with expression '1', CType: int.

Definition at line 255 of file CL11.java.

◆ KHRONOS_SUPPORT_INT64

final int com.jogamp.opencl.llb.CL11.KHRONOS_SUPPORT_INT64 = 0x1
static

Define "KHRONOS_SUPPORT_INT64" with expression '1', CType: int.

Definition at line 689 of file CL11.java.

◆ KHRONOS_TRUE

final int com.jogamp.opencl.llb.CL11.KHRONOS_TRUE = 0x1
static

Defined as part of enum type "khronos_boolean_enum_t" with expression '1', CType: int.

Definition at line 33 of file CL11.java.


The documentation for this interface was generated from the following file: