Struct ash::vk::FramebufferCreateInfo
source · #[repr(C)]pub struct FramebufferCreateInfo {
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,
}
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
Implementations§
source§impl FramebufferCreateInfo
impl FramebufferCreateInfo
pub fn builder<'a>() -> FramebufferCreateInfoBuilder<'a>
Trait Implementations§
source§impl Clone for FramebufferCreateInfo
impl Clone for FramebufferCreateInfo
source§fn clone(&self) -> FramebufferCreateInfo
fn clone(&self) -> FramebufferCreateInfo
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 more