Struct kiss3d::resource::ShaderAttribute[][src]

pub struct ShaderAttribute<T> { /* fields omitted */ }

Structure encapsulating an attribute.

Implementations

impl<T: GLPrimitive> ShaderAttribute<T>[src]

pub fn disable(&mut self)[src]

Disable this attribute.

pub fn enable(&mut self)[src]

Enable this attribute.

pub fn bind(&mut self, vector: &mut GPUVec<T>)[src]

Binds this attribute to a gpu vector.

pub fn bind_sub_buffer(
    &mut self,
    vector: &mut GPUVec<T>,
    strides: usize,
    start_index: usize
)
[src]

Binds this attribute to non contiguous parts of a gpu vector.

pub unsafe fn bind_sub_buffer_generic<T2: GLPrimitive>(
    &mut self,
    vector: &mut GPUVec<T2>,
    strides: usize,
    start_index: usize
)
[src]

Binds this attribute to non contiguous parts of a gpu vector.

The type of the provided GPU buffer is not forced to match the type of this attribute.

Auto Trait Implementations

impl<T> RefUnwindSafe for ShaderAttribute<T> where
    T: RefUnwindSafe

impl<T> Send for ShaderAttribute<T> where
    T: Send

impl<T> Sync for ShaderAttribute<T> where
    T: Sync

impl<T> Unpin for ShaderAttribute<T> where
    T: Unpin

impl<T> UnwindSafe for ShaderAttribute<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,