#[repr(C)]pub struct RenderingInfo {
pub s_type: StructureType,
pub 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 color_attachments: *const RenderingAttachmentInfo,
pub depth_attachment: *const RenderingAttachmentInfo,
pub stencil_attachment: *const RenderingAttachmentInfo,
}Expand description
Fields§
§s_type: StructureType§next: *const c_void§flags: RenderingFlags§render_area: Rect2D§layer_count: u32§view_mask: u32§color_attachment_count: u32§color_attachments: *const RenderingAttachmentInfo§depth_attachment: *const RenderingAttachmentInfo§stencil_attachment: *const RenderingAttachmentInfoTrait Implementations§
Source§impl Clone for RenderingInfo
impl Clone for RenderingInfo
Source§fn clone(&self) -> RenderingInfo
fn clone(&self) -> RenderingInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RenderingInfo
Source§impl Debug for RenderingInfo
impl Debug for RenderingInfo
Source§impl Default for RenderingInfo
impl Default for RenderingInfo
impl Eq for RenderingInfo
Source§impl Hash for RenderingInfo
impl Hash for RenderingInfo
Source§impl PartialEq for RenderingInfo
impl PartialEq for RenderingInfo
Source§fn eq(&self, other: &RenderingInfo) -> bool
fn eq(&self, other: &RenderingInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Send for RenderingInfo
impl StructuralPartialEq for RenderingInfo
impl Sync for RenderingInfo
Auto Trait Implementations§
impl Freeze for RenderingInfo
impl RefUnwindSafe for RenderingInfo
impl Unpin for RenderingInfo
impl UnsafeUnpin for RenderingInfo
impl UnwindSafe for RenderingInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more