[−][src]Enum conrod_wgpu::RenderPassCommand
A draw command that maps directly to the wgpu::CommandEncoder method. By returning
RenderPassCommands, we can avoid consuming the entire AutoCommandBufferBuilder itself which might
not always be available from APIs that wrap Vulkan.
Variants
Specify the rectangle to which drawing should be cropped.
Draw the specified range of vertices.
A new image requires drawing and in turn a new bind group requires setting.
Fields of SetBindGroup
bind_group: &'a BindGroupAn image requiring a different bind group layout requires drawing and in turn, we must set the necessary render pipeline.
Fields of SetPipeline
pipeline: &'a RenderPipelineAuto Trait Implementations
impl<'a> !RefUnwindSafe for RenderPassCommand<'a>
impl<'a> Send for RenderPassCommand<'a>
impl<'a> Sync for RenderPassCommand<'a>
impl<'a> Unpin for RenderPassCommand<'a>
impl<'a> !UnwindSafe for RenderPassCommand<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,