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>
impl<'a> RenderingInfo<'a>
pub fn flags(self, flags: RenderingFlags) -> Self
pub fn render_area(self, render_area: Rect2D) -> Self
pub fn layer_count(self, layer_count: u32) -> Self
pub fn view_mask(self, view_mask: u32) -> Self
pub fn color_attachments( self, color_attachments: &'a [RenderingAttachmentInfo<'a>], ) -> Self
pub fn depth_attachment( self, depth_attachment: &'a RenderingAttachmentInfo<'a>, ) -> Self
pub fn stencil_attachment( self, stencil_attachment: &'a RenderingAttachmentInfo<'a>, ) -> Self
Sourcepub fn push_next<T: ExtendsRenderingInfo + ?Sized>(
self,
next: &'a mut T,
) -> Self
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>
impl<'a> Clone for RenderingInfo<'a>
Source§fn clone(&self) -> RenderingInfo<'a>
fn clone(&self) -> RenderingInfo<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more