Uses of Class
com.jogamp.opencl.CLPlatform

Packages that use CLPlatform
com.jogamp.opencl   
com.jogamp.opencl.gl   
com.jogamp.opencl.util   
 

Uses of CLPlatform in com.jogamp.opencl
 

Fields in com.jogamp.opencl declared as CLPlatform
protected  CLPlatform CLContext.platform
           
 

Methods in com.jogamp.opencl that return CLPlatform
static CLPlatform CLPlatform.getDefault()
          Returns the default OpenCL platform or null when no platform found.
static CLPlatform CLPlatform.getDefault(Filter<CLPlatform>... filter)
          Returns the default OpenCL platform or null when no platform found.
 CLPlatform CLContext.getPlatform()
          Returns the CLPlatform this context is running on.
 CLPlatform CLDevice.getPlatform()
           
static CLPlatform[] CLPlatform.listCLPlatforms()
          Lists all available OpenCL implementations.
static CLPlatform[] CLPlatform.listCLPlatforms(Filter<CLPlatform>... filter)
          Lists all available OpenCL implementations.
 

Methods in com.jogamp.opencl with parameters of type CLPlatform
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.
 

Constructors in com.jogamp.opencl with parameters of type CLPlatform
CLContext(CLPlatform platform, long contextID, CLContext.ErrorDispatcher dispatcher)
           
 

Uses of CLPlatform in com.jogamp.opencl.gl
 

Methods in com.jogamp.opencl.gl with parameters of type CLPlatform
static CLGLContext CLGLContext.create(GLContext glContext, CLPlatform platform)
          Creates a shared context on the specified platform on all available devices (CL_DEVICE_TYPE_ALL).
static CLGLContext CLGLContext.create(GLContext glContext, CLPlatform platform, CLDevice.Type... deviceTypes)
          Creates a shared context on the specified platform and with the specified device types.
 

Uses of CLPlatform in com.jogamp.opencl.util
 

Methods in com.jogamp.opencl.util that return types with arguments of type CLPlatform
static Filter<CLPlatform> CLPlatformFilters.extensions(String... extensions)
          Accepts all platforms containing devices of the given extensions.
static Filter<CLPlatform> CLPlatformFilters.type(CLDevice.Type type)
          Accepts all platforms containing devices of the given type.
static Filter<CLPlatform> CLPlatformFilters.version(CLVersion version)
          Accepts all platforms supporting at least the given OpenCL spec version.
 

Methods in com.jogamp.opencl.util with parameters of type CLPlatform
static Map<String,String> CLUtil.obtainPlatformProperties(CLPlatform platform)
          Reads all platform properties and returns them as key-value map.