rendy_command

Trait BeginInfo

Source
pub unsafe trait BeginInfo<'a, B: Backend, L> {
    type PassRelation: RenderPassRelation<L>;

    // Required method
    fn inheritance_info(self) -> CommandBufferInheritanceInfo<'a, B>;
}
Expand description

Begin info for specific level and render pass relation.

Required Associated Types§

Source

type PassRelation: RenderPassRelation<L>

Pass relation type.

Required Methods§

Source

fn inheritance_info(self) -> CommandBufferInheritanceInfo<'a, B>

Get command buffer inheritance info.

Implementations on Foreign Types§

Source§

impl<'a, B> BeginInfo<'a, B, SecondaryLevel> for Subpass<'a, B>
where B: Backend,

Source§

impl<'a, B, F> BeginInfo<'a, B, SecondaryLevel> for (Subpass<'a, B>, Option<&'a F>)
where B: Backend, F: Borrow<B::Framebuffer>,

Source§

impl<'a, B, F> BeginInfo<'a, B, SecondaryLevel> for (Subpass<'a, B>, &'a F)
where B: Backend, F: Borrow<B::Framebuffer>,

Source§

impl<'a, B, L> BeginInfo<'a, B, L> for ()
where B: Backend, L: Level,

Implementors§