vulkano_taskgraph/command_buffer/commands/render_pass.rs
use crate::command_buffer::{RecordingCommandBuffer, Result};
use vulkano::command_buffer::{ClearAttachment, ClearRect};
/// # Commands for render passes
///
/// These commands require a graphics queue.
impl RecordingCommandBuffer<'_> {
/// Clears specific regions of specific attachments of the framebuffer.
///
/// `attachments` specify the types of attachments and their clear values. `rects` specify the
/// regions to clear.
///
/// If the render pass instance this is recorded in uses multiview then
/// [`ClearRect::base_array_layer`] must be zero and [`ClearRect::layer_count`] must be one.
///
/// The rectangle area must be inside the render area ranges.
pub unsafe fn clear_attachments(
&mut self,
attachments: &[ClearAttachment],
rects: &[ClearRect],
) -> Result<&mut Self> {
Ok(unsafe { self.clear_attachments_unchecked(attachments, rects) })
}
pub unsafe fn clear_attachments_unchecked(
&mut self,
attachments: &[ClearAttachment],
rects: &[ClearRect],
) -> &mut Self {
unsafe { self.inner.clear_attachments_unchecked(attachments, rects) };
self
}
}