Package | Description |
---|---|
com.jogamp.opencl |
High level java bindings to OpenCL.
|
com.jogamp.opencl.llb |
Low level java bindings to OpenCL.
|
com.jogamp.opencl.llb.impl |
Modifier and Type | Class and Description |
---|---|
protected static class |
CLContext.ErrorDispatcher |
Modifier and Type | Method and Description |
---|---|
void |
CLContext.addCLErrorHandler(CLErrorHandler handler) |
protected static long |
CLContext.createContext(CLPlatform platform,
CLErrorHandler handler,
PointerBuffer properties,
CLDevice... devices) |
protected static long |
CLContext.createContextFromType(CLPlatform platform,
CLErrorHandler handler,
PointerBuffer properties,
long deviceType) |
void |
CLContext.removeCLErrorHandler(CLErrorHandler handler) |
Modifier and Type | Method and Description |
---|---|
long |
CLContextBinding.clCreateContext(PointerBuffer properties,
PointerBuffer devices,
CLErrorHandler pfn_notify,
IntBuffer errcode_ret)
Interface to C language function:
cl_context clCreateContext(intptr_t * , uint32_t, cl_device_id * , void (*pfn_notify)(const char *, const void *, size_t, void *), void *, int32_t * ); |
long |
CLContextBinding.clCreateContextFromType(PointerBuffer properties,
long device_type,
CLErrorHandler pfn_notify,
IntBuffer errcode_ret)
Interface to C language function:
cl_context 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) ; |
Modifier and Type | Method and Description |
---|---|
long |
CLImpl.clCreateContext(PointerBuffer properties,
PointerBuffer devices,
CLErrorHandler pfn_notify,
IntBuffer errcode_ret) |
long |
CLImpl.clCreateContextFromType(PointerBuffer properties,
long device_type,
CLErrorHandler pfn_notify,
IntBuffer errcode_ret) |