Struct ash::vk::FramebufferCreateInfo
source · #[repr(C)]pub struct FramebufferCreateInfo<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: FramebufferCreateFlags,
pub render_pass: RenderPass,
pub attachment_count: u32,
pub p_attachments: *const ImageView,
pub width: u32,
pub height: u32,
pub layers: u32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: FramebufferCreateFlags
§render_pass: RenderPass
§attachment_count: u32
§p_attachments: *const ImageView
§width: u32
§height: u32
§layers: u32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> FramebufferCreateInfo<'a>
impl<'a> FramebufferCreateInfo<'a>
pub fn flags(self, flags: FramebufferCreateFlags) -> Self
pub fn render_pass(self, render_pass: RenderPass) -> Self
pub fn attachment_count(self, attachment_count: u32) -> Self
pub fn attachments(self, attachments: &'a [ImageView]) -> Self
pub fn width(self, width: u32) -> Self
pub fn height(self, height: u32) -> Self
pub fn layers(self, layers: u32) -> Self
sourcepub fn push_next<T: ExtendsFramebufferCreateInfo + ?Sized>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsFramebufferCreateInfo + ?Sized>( self, next: &'a mut T, ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call x.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
Trait Implementations§
source§impl<'a> Clone for FramebufferCreateInfo<'a>
impl<'a> Clone for FramebufferCreateInfo<'a>
source§fn clone(&self) -> FramebufferCreateInfo<'a>
fn clone(&self) -> FramebufferCreateInfo<'a>
Returns a copy 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 FramebufferCreateInfo<'a>
impl<'a> Debug for FramebufferCreateInfo<'a>
source§impl Default for FramebufferCreateInfo<'_>
impl Default for FramebufferCreateInfo<'_>
source§impl<'a> TaggedStructure for FramebufferCreateInfo<'a>
impl<'a> TaggedStructure for FramebufferCreateInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::FRAMEBUFFER_CREATE_INFO
impl<'a> Copy for FramebufferCreateInfo<'a>
impl Send for FramebufferCreateInfo<'_>
impl Sync for FramebufferCreateInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for FramebufferCreateInfo<'a>
impl<'a> RefUnwindSafe for FramebufferCreateInfo<'a>
impl<'a> Unpin for FramebufferCreateInfo<'a>
impl<'a> UnwindSafe for FramebufferCreateInfo<'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