Struct opencl3::memory::Buffer

source ·
pub struct Buffer<T> { /* private fields */ }
Expand description

An OpenCL buffer.
Implements the Drop trait to call release_mem_object when the object is dropped.

Implementations§

source§

impl<T> Buffer<T>

source

pub fn new(buffer: cl_mem) -> Buffer<T>

source

pub unsafe fn create( context: &Context, flags: cl_mem_flags, count: size_t, host_ptr: *mut c_void ) -> Result<Buffer<T>>

Create a Buffer for a context.

  • context - a valid OpenCL context.
  • flags - a bit-field used to specify allocation and usage information about the image memory object being created, see: Memory Flags.
  • count - the number of T objects to be allocated.
  • host_ptr - a pointer to the buffer data that may already be allocated by the application.

returns a Result containing the new OpenCL buffer object or the error code from the OpenCL C API function.

source

pub unsafe fn create_from_gl_buffer( context: &Context, flags: cl_mem_flags, bufobj: cl_GLuint ) -> Result<Buffer<T>>

Create an OpenCL buffer object for a context from an OpenGL buffer.

  • context - a valid OpenCL context created from an OpenGL context.
  • flags - a bit-field used to specify allocation and usage information about the image memory object being created, see: Memory Flags.
  • bufobj - the OpenGL buffer.

returns a Result containing the new OpenCL buffer object or the error code from the OpenCL C API function.

source

pub unsafe fn create_sub_buffer( &self, flags: cl_mem_flags, origin: usize, count: usize ) -> Result<Buffer<T>>

Create an new OpenCL buffer object from an existing buffer object.
See: SubBuffer Attributes.

  • flags - a bit-field used to specify allocation and usage information about the sub-buffer memory object being created, see: Memory Flags.
  • origin - the offset in number of objects of type .
  • count - the size of the sub-buffer in number of objects of type .

returns a Result containing the new OpenCL buffer object or the error code from the OpenCL C API function.

Trait Implementations§

source§

impl<T> ClMem for Buffer<T>

source§

fn get(&self) -> cl_mem

source§

fn get_mut(&mut self) -> cl_mem

source§

fn mem_type(&self) -> Result<cl_mem_object_type>

source§

fn flags(&self) -> Result<cl_mem_flags>

source§

fn size(&self) -> Result<size_t>

source§

fn host_ptr(&self) -> Result<intptr_t>

source§

fn map_count(&self) -> Result<cl_uint>

source§

fn reference_count(&self) -> Result<cl_uint>

source§

fn context(&self) -> Result<cl_context>

source§

fn associated_memobject(&self) -> Result<cl_mem>

source§

fn offset(&self) -> Result<size_t>

source§

fn uses_svm_pointer(&self) -> Result<cl_uint>

source§

fn properties(&self) -> Result<Vec<cl_ulong>>

CL_VERSION_3_0
source§

fn get_mem_data(&self, param_name: cl_mem_info) -> Result<Vec<u8>>

Get memory data about an OpenCL memory object. Calls clGetMemObjectInfo to get the desired data about the memory object.
source§

fn gl_object_info(&self) -> Result<(cl_GLuint, cl_GLuint)>

Query an OpenGL object used to create an OpenCL memory object. Read more
source§

impl<T: Debug> Debug for Buffer<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Drop for Buffer<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T> From<Buffer<T>> for cl_mem

source§

fn from(value: Buffer<T>) -> Self

Converts to this type from the input type.
source§

impl<T: Send> Send for Buffer<T>

source§

impl<T: Sync> Sync for Buffer<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Buffer<T>
where T: RefUnwindSafe,

§

impl<T> Unpin for Buffer<T>
where T: Unpin,

§

impl<T> UnwindSafe for Buffer<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.