#[repr(C)]pub struct CustomResolveCreateInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub custom_resolve: u32,
pub color_attachment_count: u32,
pub p_color_attachment_formats: *const Format,
pub depth_attachment_format: Format,
pub stencil_attachment_format: Format,
}Expand description
VkCustomResolveCreateInfoEXT
Provided by VK_EXT_custom_resolve.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_CUSTOM_RESOLVE_CREATE_INFO_EXT.
p_next: *const c_voidOptional, may be null.
custom_resolve: u32§color_attachment_count: u32Length of p_color_attachment_formats.
p_color_attachment_formats: *const Format§depth_attachment_format: Format§stencil_attachment_format: FormatImplementations§
Source§impl CustomResolveCreateInfoEXT
impl CustomResolveCreateInfoEXT
Sourcepub fn builder<'a>() -> CustomResolveCreateInfoEXTBuilder<'a>
pub fn builder<'a>() -> CustomResolveCreateInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for CustomResolveCreateInfoEXT
impl Clone for CustomResolveCreateInfoEXT
Source§fn clone(&self) -> CustomResolveCreateInfoEXT
fn clone(&self) -> CustomResolveCreateInfoEXT
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 CustomResolveCreateInfoEXT
impl Debug for CustomResolveCreateInfoEXT
Source§impl Default for CustomResolveCreateInfoEXT
impl Default for CustomResolveCreateInfoEXT
Source§fn default() -> CustomResolveCreateInfoEXT
fn default() -> CustomResolveCreateInfoEXT
Returns the “default value” for a type. Read more
impl Copy for CustomResolveCreateInfoEXT
impl ExtendsCommandBufferInheritanceInfo for CustomResolveCreateInfoEXT
impl ExtendsGraphicsPipelineCreateInfo for CustomResolveCreateInfoEXT
impl ExtendsShaderCreateInfoEXT for CustomResolveCreateInfoEXT
Auto Trait Implementations§
impl Freeze for CustomResolveCreateInfoEXT
impl RefUnwindSafe for CustomResolveCreateInfoEXT
impl !Send for CustomResolveCreateInfoEXT
impl !Sync for CustomResolveCreateInfoEXT
impl Unpin for CustomResolveCreateInfoEXT
impl UnsafeUnpin for CustomResolveCreateInfoEXT
impl UnwindSafe for CustomResolveCreateInfoEXT
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