ash::vk

Type Alias RenderingInfoKHR

Source
pub type RenderingInfoKHR<'a> = RenderingInfo<'a>;

Aliased Type§

struct RenderingInfoKHR<'a> {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub flags: RenderingFlags,
    pub render_area: Rect2D,
    pub layer_count: u32,
    pub view_mask: u32,
    pub color_attachment_count: u32,
    pub p_color_attachments: *const RenderingAttachmentInfo<'a>,
    pub p_depth_attachment: *const RenderingAttachmentInfo<'a>,
    pub p_stencil_attachment: *const RenderingAttachmentInfo<'a>,
    pub _marker: PhantomData<&'a ()>,
}

Fields§

§s_type: StructureType§p_next: *const c_void§flags: RenderingFlags§render_area: Rect2D§layer_count: u32§view_mask: u32§color_attachment_count: u32§p_color_attachments: *const RenderingAttachmentInfo<'a>§p_depth_attachment: *const RenderingAttachmentInfo<'a>§p_stencil_attachment: *const RenderingAttachmentInfo<'a>§_marker: PhantomData<&'a ()>

Implementations

Source§

impl<'a> RenderingInfo<'a>

Source

pub fn flags(self, flags: RenderingFlags) -> Self

Source

pub fn render_area(self, render_area: Rect2D) -> Self

Source

pub fn layer_count(self, layer_count: u32) -> Self

Source

pub fn view_mask(self, view_mask: u32) -> Self

Source

pub fn color_attachments( self, color_attachments: &'a [RenderingAttachmentInfo<'a>], ) -> Self

Source

pub fn depth_attachment( self, depth_attachment: &'a RenderingAttachmentInfo<'a>, ) -> Self

Source

pub fn stencil_attachment( self, stencil_attachment: &'a RenderingAttachmentInfo<'a>, ) -> Self

Source

pub fn push_next<T: ExtendsRenderingInfo + ?Sized>( self, next: &'a mut T, ) -> Self

Prepends the given extension struct between the root and the first pointer. This method only exists on structs that can be passed to a function directly. Only valid extension structs can be pushed into the chain. If the chain looks like A -> B -> C, and you call x.push_next(&mut D), then the chain will look like A -> D -> B -> C.

Trait Implementations

Source§

impl<'a> Clone for RenderingInfo<'a>

Source§

fn clone(&self) -> RenderingInfo<'a>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for RenderingInfo<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for RenderingInfo<'_>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'a> TaggedStructure for RenderingInfo<'a>

Source§

const STRUCTURE_TYPE: StructureType = StructureType::RENDERING_INFO

Source§

impl<'a> Copy for RenderingInfo<'a>

Source§

impl Send for RenderingInfo<'_>

Source§

impl Sync for RenderingInfo<'_>