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