OpenCL C++ Bindings
|
Class interface for cl_context. More...
#include <opencl.hpp>
Public Member Functions | |
Context (const vector< Device > &devices, const cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL) | |
Constructs a context including a list of specified devices. More... | |
Context (const Device &device, const cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL) | |
Constructs a context including a specific device. More... | |
Context (cl_device_type type, const cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL) | |
Constructs a context including all or a subset of devices of a specified type. More... | |
Context (const Context &ctx) | |
Copy constructor to forward copy to the superclass correctly. Required for MSVC. More... | |
Context & | operator= (const Context &ctx) |
Copy assignment to forward copy to the superclass correctly. Required for MSVC. More... | |
Context (Context &&ctx) CL_HPP_NOEXCEPT_ | |
Move constructor to forward move to the superclass correctly. Required for MSVC. More... | |
Context & | operator= (Context &&ctx) |
Move assignment to forward move to the superclass correctly. Required for MSVC. More... | |
Context () | |
Default constructor - initializes to NULL. More... | |
Context (const cl_context &context, bool retainObject=false) | |
Constructor from cl_context - takes ownership. More... | |
Context & | operator= (const cl_context &rhs) |
Assignment operator from cl_context - takes ownership. More... | |
template<typename T > | |
cl_int | getInfo (cl_context_info name, T *param) const |
Wrapper for clGetContextInfo(). More... | |
template<cl_context_info name> | |
detail::param_traits< detail::cl_context_info, name >::param_type | getInfo (cl_int *err=NULL) const |
Wrapper for clGetContextInfo() that returns by value. More... | |
cl_int | getSupportedImageFormats (cl_mem_flags flags, cl_mem_object_type type, vector< ImageFormat > *formats) const |
Gets a list of supported image formats. More... | |
Public Member Functions inherited from cl::detail::Wrapper< cl_context > | |
Wrapper (const cl_type &obj, bool retainObject) | |
Wrapper (const Wrapper< cl_type > &rhs) | |
Wrapper (Wrapper< cl_type > &&rhs) CL_HPP_NOEXCEPT_ | |
Wrapper< cl_type > & | operator= (const Wrapper< cl_type > &rhs) |
Wrapper< cl_type > & | operator= (Wrapper< cl_type > &&rhs) |
Wrapper< cl_type > & | operator= (const cl_type &rhs) |
const cl_type & | operator() () const |
cl_type & | operator() () |
cl_type | get () const |
Static Public Member Functions | |
static Context | getDefault (cl_int *err=NULL) |
Returns a singleton context including all devices of CL_DEVICE_TYPE_DEFAULT. More... | |
static Context | setDefault (const Context &default_context) |
Additional Inherited Members | |
Public Types inherited from cl::detail::Wrapper< cl_context > | |
typedef cl_context | cl_type |
Protected Member Functions inherited from cl::detail::Wrapper< cl_context > | |
cl_int | retain () const |
cl_int | release () const |
Protected Attributes inherited from cl::detail::Wrapper< cl_context > | |
cl_type | object_ |
Class interface for cl_context.
Definition at line 2837 of file opencl.hpp.
|
inline |
Constructs a context including a list of specified devices.
Wraps clCreateContext().
Definition at line 2909 of file opencl.hpp.
|
inline |
Constructs a context including a specific device.
Wraps clCreateContext().
Definition at line 2944 of file opencl.hpp.
|
inline |
Constructs a context including all or a subset of devices of a specified type.
Wraps clCreateContextFromType().
Definition at line 2974 of file opencl.hpp.
|
inline |
Copy constructor to forward copy to the superclass correctly. Required for MSVC.
Definition at line 3060 of file opencl.hpp.
|
inline |
Move constructor to forward move to the superclass correctly. Required for MSVC.
Definition at line 3074 of file opencl.hpp.
|
inline |
Default constructor - initializes to NULL.
Definition at line 3115 of file opencl.hpp.
|
inlineexplicit |
Constructor from cl_context - takes ownership.
This effectively transfers ownership of a refcount on the cl_context into the new Context object.
Definition at line 3122 of file opencl.hpp.
|
inlinestatic |
Returns a singleton context including all devices of CL_DEVICE_TYPE_DEFAULT.
Definition at line 3090 of file opencl.hpp.
|
inline |
Wrapper for clGetContextInfo().
Definition at line 3138 of file opencl.hpp.
|
inline |
Wrapper for clGetContextInfo() that returns by value.
Definition at line 3148 of file opencl.hpp.
|
inline |
Gets a list of supported image formats.
Wraps clGetSupportedImageFormats().
Definition at line 3163 of file opencl.hpp.
|
inline |
Assignment operator from cl_context - takes ownership.
This effectively transfers ownership of a refcount on the rhs and calls clReleaseContext() on the value previously held by this instance.
Definition at line 3130 of file opencl.hpp.
Copy assignment to forward copy to the superclass correctly. Required for MSVC.
Definition at line 3065 of file opencl.hpp.
Move assignment to forward move to the superclass correctly. Required for MSVC.
Definition at line 3079 of file opencl.hpp.
Modify the default context to be used by subsequent operations. Will only set the default if no default was previously created.
Definition at line 3107 of file opencl.hpp.