#[repr(C)]pub struct CustomResolveCreateInfoEXT<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub custom_resolve: Bool32,
pub color_attachment_count: u32,
pub p_color_attachment_formats: *const Format,
pub depth_attachment_format: Format,
pub stencil_attachment_format: Format,
pub _marker: PhantomData<&'a ()>,
}Expand description
Fields§
§s_type: StructureType§p_next: *const c_void§custom_resolve: Bool32§color_attachment_count: u32§p_color_attachment_formats: *const Format§depth_attachment_format: Format§stencil_attachment_format: Format§_marker: PhantomData<&'a ()>Implementations§
Source§impl<'a> CustomResolveCreateInfoEXT<'a>
impl<'a> CustomResolveCreateInfoEXT<'a>
pub fn custom_resolve(self, custom_resolve: bool) -> Self
pub fn color_attachment_formats( self, color_attachment_formats: &'a [Format], ) -> Self
pub fn depth_attachment_format(self, depth_attachment_format: Format) -> Self
pub fn stencil_attachment_format( self, stencil_attachment_format: Format, ) -> Self
Trait Implementations§
Source§impl<'a> Clone for CustomResolveCreateInfoEXT<'a>
impl<'a> Clone for CustomResolveCreateInfoEXT<'a>
Source§fn clone(&self) -> CustomResolveCreateInfoEXT<'a>
fn clone(&self) -> CustomResolveCreateInfoEXT<'a>
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<'a> Debug for CustomResolveCreateInfoEXT<'a>
impl<'a> Debug for CustomResolveCreateInfoEXT<'a>
Source§impl Default for CustomResolveCreateInfoEXT<'_>
impl Default for CustomResolveCreateInfoEXT<'_>
Source§impl<'a> TaggedStructure for CustomResolveCreateInfoEXT<'a>
impl<'a> TaggedStructure for CustomResolveCreateInfoEXT<'a>
const STRUCTURE_TYPE: StructureType = StructureType::CUSTOM_RESOLVE_CREATE_INFO_EXT
impl<'a> Copy for CustomResolveCreateInfoEXT<'a>
impl ExtendsCommandBufferInheritanceInfo for CustomResolveCreateInfoEXT<'_>
impl ExtendsGraphicsPipelineCreateInfo for CustomResolveCreateInfoEXT<'_>
impl ExtendsShaderCreateInfoEXT for CustomResolveCreateInfoEXT<'_>
impl Send for CustomResolveCreateInfoEXT<'_>
impl Sync for CustomResolveCreateInfoEXT<'_>
Auto Trait Implementations§
impl<'a> Freeze for CustomResolveCreateInfoEXT<'a>
impl<'a> RefUnwindSafe for CustomResolveCreateInfoEXT<'a>
impl<'a> Unpin for CustomResolveCreateInfoEXT<'a>
impl<'a> UnwindSafe for CustomResolveCreateInfoEXT<'a>
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