Struct gfx_hal::command::RenderSubpassCommon
source · pub struct RenderSubpassCommon<B, C> { /* private fields */ }
Expand description
This struct contains all methods for all commands submittable during a subpass. It is used to implement the identical portions of RenderPassInlineEncoder and SubpassCommandBuffer.
Where methods are undocumented, they are identical to the methods on the RawCommandBuffer
trait with the same names.
Implementations
sourceimpl<B: Backend, C: BorrowMut<B::CommandBuffer>> RenderSubpassCommon<B, C>
impl<B: Backend, C: BorrowMut<B::CommandBuffer>> RenderSubpassCommon<B, C>
sourcepub unsafe fn clear_attachments<T, U>(&mut self, clears: T, rects: U)where
T: IntoIterator,
T::Item: Borrow<AttachmentClear>,
U: IntoIterator,
U::Item: Borrow<ClearRect>,
pub unsafe fn clear_attachments<T, U>(&mut self, clears: T, rects: U)where
T: IntoIterator,
T::Item: Borrow<AttachmentClear>,
U: IntoIterator,
U::Item: Borrow<ClearRect>,
sourcepub unsafe fn draw(
&mut self,
vertices: Range<VertexCount>,
instances: Range<InstanceCount>
)
pub unsafe fn draw(
&mut self,
vertices: Range<VertexCount>,
instances: Range<InstanceCount>
)
sourcepub unsafe fn draw_indexed(
&mut self,
indices: Range<IndexCount>,
base_vertex: VertexOffset,
instances: Range<InstanceCount>
)
pub unsafe fn draw_indexed(
&mut self,
indices: Range<IndexCount>,
base_vertex: VertexOffset,
instances: Range<InstanceCount>
)
sourcepub unsafe fn draw_indirect(
&mut self,
buffer: &B::Buffer,
offset: Offset,
draw_count: DrawCount,
stride: u32
)
pub unsafe fn draw_indirect(
&mut self,
buffer: &B::Buffer,
offset: Offset,
draw_count: DrawCount,
stride: u32
)
sourcepub unsafe fn draw_indexed_indirect(
&mut self,
buffer: &B::Buffer,
offset: Offset,
draw_count: DrawCount,
stride: u32
)
pub unsafe fn draw_indexed_indirect(
&mut self,
buffer: &B::Buffer,
offset: Offset,
draw_count: DrawCount,
stride: u32
)
sourcepub unsafe fn bind_index_buffer(&mut self, ibv: IndexBufferView<'_, B>)
pub unsafe fn bind_index_buffer(&mut self, ibv: IndexBufferView<'_, B>)
sourcepub unsafe fn bind_vertex_buffers<I, T>(&mut self, first_binding: u32, buffers: I)where
I: IntoIterator<Item = (T, Offset)>,
T: Borrow<B::Buffer>,
pub unsafe fn bind_vertex_buffers<I, T>(&mut self, first_binding: u32, buffers: I)where
I: IntoIterator<Item = (T, Offset)>,
T: Borrow<B::Buffer>,
sourcepub unsafe fn bind_graphics_pipeline(&mut self, pipeline: &B::GraphicsPipeline)
pub unsafe fn bind_graphics_pipeline(&mut self, pipeline: &B::GraphicsPipeline)
sourcepub unsafe fn bind_graphics_descriptor_sets<I, J>(
&mut self,
layout: &B::PipelineLayout,
first_set: usize,
sets: I,
offsets: J
)where
I: IntoIterator,
I::Item: Borrow<B::DescriptorSet>,
J: IntoIterator,
J::Item: Borrow<DescriptorSetOffset>,
pub unsafe fn bind_graphics_descriptor_sets<I, J>(
&mut self,
layout: &B::PipelineLayout,
first_set: usize,
sets: I,
offsets: J
)where
I: IntoIterator,
I::Item: Borrow<B::DescriptorSet>,
J: IntoIterator,
J::Item: Borrow<DescriptorSetOffset>,
sourcepub unsafe fn set_viewports<T>(&mut self, first_viewport: u32, viewports: T)where
T: IntoIterator,
T::Item: Borrow<Viewport>,
pub unsafe fn set_viewports<T>(&mut self, first_viewport: u32, viewports: T)where
T: IntoIterator,
T::Item: Borrow<Viewport>,
sourcepub unsafe fn set_scissors<T>(&mut self, first_scissor: u32, scissors: T)where
T: IntoIterator,
T::Item: Borrow<Rect>,
pub unsafe fn set_scissors<T>(&mut self, first_scissor: u32, scissors: T)where
T: IntoIterator,
T::Item: Borrow<Rect>,
sourcepub unsafe fn set_stencil_reference(&mut self, faces: Face, value: StencilValue)
pub unsafe fn set_stencil_reference(&mut self, faces: Face, value: StencilValue)
sourcepub unsafe fn set_stencil_read_mask(&mut self, faces: Face, value: StencilValue)
pub unsafe fn set_stencil_read_mask(&mut self, faces: Face, value: StencilValue)
sourcepub unsafe fn set_stencil_write_mask(&mut self, faces: Face, value: StencilValue)
pub unsafe fn set_stencil_write_mask(&mut self, faces: Face, value: StencilValue)
sourcepub unsafe fn set_blend_constants(&mut self, cv: ColorValue)
pub unsafe fn set_blend_constants(&mut self, cv: ColorValue)
sourcepub unsafe fn set_depth_bounds(&mut self, bounds: Range<f32>)
pub unsafe fn set_depth_bounds(&mut self, bounds: Range<f32>)
sourcepub unsafe fn push_graphics_constants(
&mut self,
layout: &B::PipelineLayout,
stages: ShaderStageFlags,
offset: u32,
constants: &[u32]
)
pub unsafe fn push_graphics_constants(
&mut self,
layout: &B::PipelineLayout,
stages: ShaderStageFlags,
offset: u32,
constants: &[u32]
)
sourcepub unsafe fn set_line_width(&mut self, width: f32)
pub unsafe fn set_line_width(&mut self, width: f32)
sourcepub unsafe fn set_depth_bias(&mut self, depth_bias: DepthBias)
pub unsafe fn set_depth_bias(&mut self, depth_bias: DepthBias)
sourcepub unsafe fn begin_query(&mut self, query: Query<'_, B>, flags: ControlFlags)
pub unsafe fn begin_query(&mut self, query: Query<'_, B>, flags: ControlFlags)
sourcepub unsafe fn write_timestamp(
&mut self,
stage: PipelineStage,
query: Query<'_, B>
)
pub unsafe fn write_timestamp(
&mut self,
stage: PipelineStage,
query: Query<'_, B>
)
Auto Trait Implementations
impl<B, C> RefUnwindSafe for RenderSubpassCommon<B, C>where
B: RefUnwindSafe,
C: RefUnwindSafe,
impl<B, C> Send for RenderSubpassCommon<B, C>where
B: Send,
C: Send,
impl<B, C> Sync for RenderSubpassCommon<B, C>where
B: Sync,
C: Sync,
impl<B, C> Unpin for RenderSubpassCommon<B, C>where
B: Unpin,
C: Unpin,
impl<B, C> UnwindSafe for RenderSubpassCommon<B, C>where
B: UnwindSafe,
C: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more