Struct ocl_core::types::structs::ArgVal

source ·
pub struct ArgVal<'a> { /* private fields */ }
Expand description

A reference to a kernel argument value.

Example:

let kernel = core::create_kernel(&program, "multiply")?;
core::set_kernel_arg(&kernel, 0, ArgVal::scalar(&10.0f32))?;
core::set_kernel_arg(&kernel, 1, ArgVal::mem(&buffer))?;

Implementations§

source§

impl<'a> ArgVal<'a>

source

pub fn mem(mem: &'a Mem) -> ArgVal<'a>

Returns a new ArgVal referring to a Mem object.

source

pub fn mem_null() -> ArgVal<'a>

Returns a new ArgVal corresponding to a null Mem object.

source

pub fn sampler(sampler: &'a Sampler) -> ArgVal<'a>

Returns a new ArgVal referring to a Sampler object.

source

pub fn sampler_null() -> ArgVal<'a>

Returns a new ArgVal referring to a null Sampler object.

source

pub fn primitive<T>(prm: &'a T) -> ArgVal<'a>where T: OclPrm,

Returns a new ArgVal referring to a scalar or vector primitive.

source

pub fn scalar<T>(scalar: &'a T) -> ArgVal<'a>where T: OclPrm,

Returns a new ArgVal referring to a scalar primitive.

source

pub fn vector<T>(vector: &'a T) -> ArgVal<'a>where T: OclPrm,

Returns a new ArgVal referring to a vector primitive.

source

pub fn local<T>(length: &usize) -> ArgVal<'a>where T: OclPrm,

Returns a new ArgVal corresponding to a __local argument.

To specify a __local argument size in bytes, use ::raw instead (with value: std::ptr::null()).

source

pub unsafe fn from_raw( size: size_t, value: *const c_void, is_mem: bool ) -> ArgVal<'a>

Returns a new ArgVal containing the size in bytes and a raw pointer to the argument value.

Safety

Caller must ensure that the value pointed to by value lives until the call to ::set_kernel_arg returns and that size accurately reflects the total number of bytes that should be read.

source

pub fn as_raw(&self) -> (size_t, *const c_void)

Returns the size (in bytes) and raw pointer to the contained kernel argument value.

source

pub fn is_mem_null(&self) -> bool

Returns true if this ArgVal represents a null Mem or Sampler object.

Trait Implementations§

source§

impl<'a> Clone for ArgVal<'a>

source§

fn clone(&self) -> ArgVal<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for ArgVal<'a>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for ArgVal<'a>

§

impl<'a> !Send for ArgVal<'a>

§

impl<'a> !Sync for ArgVal<'a>

§

impl<'a> Unpin for ArgVal<'a>

§

impl<'a> UnwindSafe for ArgVal<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.