Uses of Class
com.jogamp.opencl.CLContext

Packages that use CLContext
com.jogamp.opencl   
com.jogamp.opencl.gl   
 

Uses of CLContext in com.jogamp.opencl
 

Methods in com.jogamp.opencl that return CLContext
static CLContext CLContext.create()
          Creates a context on all available devices (CL_DEVICE_TYPE_ALL).
static CLContext CLContext.create(CLDevice... devices)
          Creates a context on the specified devices.
static CLContext CLContext.create(CLDevice.Type... deviceTypes)
          Creates a context on the specified device types.
static CLContext CLContext.create(CLPlatform platform)
          Creates a context on the specified platform on all available devices (CL_DEVICE_TYPE_ALL).
static CLContext CLContext.create(CLPlatform platform, CLDevice.Type... deviceTypes)
          Creates a context on the specified platform and with the specified device types.
 CLContext CLContext.getContext()
           
 

Methods in com.jogamp.opencl with parameters of type CLContext
static CLUserEvent CLUserEvent.create(CLContext context)
          Creates a new user event.
protected static CL CLMemory.getCL(CLContext context)
           
static CLProgramConfiguration CLProgramBuilder.loadConfiguration(ObjectInputStream ois, CLContext context)
          Loads a CLProgramConfiguration containing a CLProgram.
 

Constructors in com.jogamp.opencl with parameters of type CLContext
CLBuffer(CLContext context, B directBuffer, long size, long id, int flags)
           
CLBuffer(CLContext context, long size, long id, int flags)
           
CLImage(CLContext context, B directBuffer, CLImageFormat format, CLImage.CLImageInfoAccessor accessor, int width, int height, long id, int flags)
           
CLImage(CLContext context, B directBuffer, CLImageFormat format, int width, int height, long id, int flags)
           
CLImage2d(CLContext context, B directBuffer, CLImageFormat format, CLImage.CLImageInfoAccessor accessor, int width, int height, long id, int flags)
           
CLImage3d(CLContext context, B directBuffer, CLImageFormat format, CLImage.CLImageInfoAccessor accessor, int width, int height, int depth, long id, int flags)
           
CLMemory(CLContext context, B directBuffer, long size, long id, int flags)
           
CLMemory(CLContext context, long size, long id, int flags)
           
 

Uses of CLContext in com.jogamp.opencl.gl
 

Subclasses of CLContext in com.jogamp.opencl.gl
 class CLGLContext
          OpenCL Context supporting JOGL-JOCL interoperablity.
 

Constructors in com.jogamp.opencl.gl with parameters of type CLContext
CLGLImage2d(CLContext context, B directBuffer, CLImageFormat format, CLImage.CLImageInfoAccessor accessor, int width, int height, long id, int glid, int flags)
           
CLGLTexture2d(CLContext context, B directBuffer, CLImageFormat format, CLImage.CLImageInfoAccessor accessor, int target, int mipLevel, int width, int height, long id, int glid, int flags)