[][src]Struct vulkano::pipeline::vertex::TwoBuffersDefinition

pub struct TwoBuffersDefinition<T, U>(pub PhantomData<(T, U)>);

Unstable.

Methods

impl<T, U> TwoBuffersDefinition<T, U>[src]

pub fn new() -> TwoBuffersDefinition<T, U>[src]

Trait Implementations

impl<T, U, I> VertexDefinition<I> for TwoBuffersDefinition<T, U> where
    T: Vertex,
    U: Vertex,
    I: ShaderInterfaceDef
[src]

type BuffersIter = VecIntoIter<(u32, usize, InputRate)>

Iterator that returns the offset, the stride (in bytes) and input rate of each buffer.

type AttribsIter = VecIntoIter<(u32, u32, AttributeInfo)>

Iterator that returns the attribute location, buffer id, and infos.

impl<T, U> VertexSource<Vec<Arc<dyn BufferAccess + 'static + Send + Sync>>> for TwoBuffersDefinition<T, U> where
    T: Vertex,
    U: Vertex
[src]

impl<'a, T, U, Bt, Bu> VertexSource<(Bt, Bu)> for TwoBuffersDefinition<T, U> where
    T: Vertex,
    Bt: TypedBufferAccess<Content = [T]> + Send + Sync + 'static,
    U: Vertex,
    Bu: TypedBufferAccess<Content = [U]> + Send + Sync + 'static, 
[src]

Auto Trait Implementations

impl<T, U> Send for TwoBuffersDefinition<T, U> where
    T: Send,
    U: Send

impl<T, U> Sync for TwoBuffersDefinition<T, U> where
    T: Sync,
    U: Sync

impl<T, U> Unpin for TwoBuffersDefinition<T, U> where
    T: Unpin,
    U: Unpin

impl<T, U> UnwindSafe for TwoBuffersDefinition<T, U> where
    T: UnwindSafe,
    U: UnwindSafe

impl<T, U> RefUnwindSafe for TwoBuffersDefinition<T, U> where
    T: RefUnwindSafe,
    U: RefUnwindSafe

Blanket Implementations

impl<T> Content for T[src]

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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