#[repr(C)]pub struct RenderingInfo {
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,
pub p_depth_attachment: *const RenderingAttachmentInfo,
pub p_stencil_attachment: *const RenderingAttachmentInfo,
}Expand description
VkRenderingInfo
Provided by VK_GRAPHICS_VERSION_1_3.
§Extended By
DeviceGroupRenderPassBeginInfoMultisampledRenderToSingleSampledInfoEXTMultiviewPerViewAttributesInfoNVXMultiviewPerViewRenderAreasRenderPassBeginInfoQCOMRenderPassPerformanceCountersByRegionBeginInfoARMRenderPassStripeBeginInfoARMRenderPassTileShadingCreateInfoQCOMRenderingFragmentDensityMapAttachmentInfoEXTRenderingFragmentShadingRateAttachmentInfoKHRTileMemorySizeInfoQCOM
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_RENDERING_INFO.
p_next: *const c_voidOptional, may be null.
flags: RenderingFlags§render_area: Rect2D§layer_count: u32§view_mask: u32§color_attachment_count: u32Length of p_color_attachments.
p_color_attachments: *const RenderingAttachmentInfo§p_depth_attachment: *const RenderingAttachmentInfoOptional, may be null.
p_stencil_attachment: *const RenderingAttachmentInfoOptional, may be null.
Implementations§
Source§impl RenderingInfo
impl RenderingInfo
Sourcepub fn builder<'a>() -> RenderingInfoBuilder<'a>
pub fn builder<'a>() -> RenderingInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait 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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RenderingInfo
impl Debug for RenderingInfo
Source§impl Default for RenderingInfo
impl Default for RenderingInfo
impl Copy for RenderingInfo
Auto Trait Implementations§
impl Freeze for RenderingInfo
impl RefUnwindSafe for RenderingInfo
impl !Send for RenderingInfo
impl !Sync 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