Struct lava::VkImageCreateInfo[][src]

pub struct VkImageCreateInfo<'a> {
    pub flags: VkImageCreateFlags,
    pub image_type: VkImageType,
    pub format: VkFormat,
    pub extent: VkExtent3D,
    pub mip_levels: usize,
    pub array_layers: usize,
    pub samples: VkSampleCountFlags,
    pub tiling: VkImageTiling,
    pub usage: VkImageUsageFlags,
    pub sharing_mode: VkSharingMode,
    pub queue_family_indices: &'a [usize],
    pub initial_layout: VkImageLayout,
}

Fields

Trait Implementations

impl<'a> Debug for VkImageCreateInfo<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> Clone for VkImageCreateInfo<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VkImageCreateInfo<'static>
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl<'a> Send for VkImageCreateInfo<'a>

impl<'a> Sync for VkImageCreateInfo<'a>