#[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) -> FramebufferCreateInfo<'a>
pub fn render_pass(self, render_pass: RenderPass) -> FramebufferCreateInfo<'a>
pub fn attachment_count( self, attachment_count: u32, ) -> FramebufferCreateInfo<'a>
pub fn attachments( self, attachments: &'a [ImageView], ) -> FramebufferCreateInfo<'a>
pub fn width(self, width: u32) -> FramebufferCreateInfo<'a>
pub fn height(self, height: u32) -> FramebufferCreateInfo<'a>
pub fn layers(self, layers: u32) -> FramebufferCreateInfo<'a>
Sourcepub fn push_next<T>(self, next: &'a mut T) -> FramebufferCreateInfo<'a>where
T: ExtendsFramebufferCreateInfo + ?Sized,
pub fn push_next<T>(self, next: &'a mut T) -> FramebufferCreateInfo<'a>where
T: ExtendsFramebufferCreateInfo + ?Sized,
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 duplicate of the value. Read more
1.0.0§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§fn default() -> FramebufferCreateInfo<'_>
fn default() -> FramebufferCreateInfo<'_>
Returns the “default value” for a type. Read more
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§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)