[][src]Struct lava::nv::VkGeneratedCommandsInfo

pub struct VkGeneratedCommandsInfo {
    pub pipeline_bind_point: VkPipelineBindPoint,
    pub pipeline: VkPipeline,
    pub indirect_commands_layout: VkIndirectCommandsLayout,
    pub streams: Vec<VkIndirectCommandsStream>,
    pub sequences_count: usize,
    pub preprocess_buffer: VkBuffer,
    pub preprocess_offset: usize,
    pub preprocess_size: usize,
    pub sequences_count_buffer: Option<VkBuffer>,
    pub sequences_count_offset: usize,
    pub sequences_index_buffer: Option<VkBuffer>,
    pub sequences_index_offset: usize,
}

Fields

pipeline_bind_point: VkPipelineBindPointpipeline: VkPipelineindirect_commands_layout: VkIndirectCommandsLayoutstreams: Vec<VkIndirectCommandsStream>sequences_count: usizepreprocess_buffer: VkBufferpreprocess_offset: usizepreprocess_size: usizesequences_count_buffer: Option<VkBuffer>sequences_count_offset: usizesequences_index_buffer: Option<VkBuffer>sequences_index_offset: usize

Trait Implementations

impl Clone for VkGeneratedCommandsInfo[src]

impl Debug for VkGeneratedCommandsInfo[src]

impl Default for VkGeneratedCommandsInfo[src]

Auto Trait Implementations

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.