Struct asche::ImageDescriptor[][src]

pub struct ImageDescriptor<'a> {
    pub name: &'a str,
    pub usage: ImageUsageFlags,
    pub memory_location: MemoryLocation,
    pub sharing_mode: SharingMode,
    pub queues: QueueFlags,
    pub image_type: ImageType,
    pub format: Format,
    pub extent: Extent3D,
    pub mip_levels: u32,
    pub array_layers: u32,
    pub samples: SampleCountFlagBits,
    pub tiling: ImageTiling,
    pub initial_layout: ImageLayout,
    pub flags: Option<ImageCreateFlags>,
}

Describes how an image should be configured.

Fields

name: &'a str

Name used for debugging.

usage: ImageUsageFlags

What is the image used for.

memory_location: MemoryLocation

Where should the image reside.

sharing_mode: SharingMode

The sharing mode between queues.

queues: QueueFlags

Which queues should have access to it.

image_type: ImageType

The type of the image.

format: Format

The format of the image.

extent: Extent3D

The extent of the image.

mip_levels: u32

The count mips level.

array_layers: u32

The count array layers.

samples: SampleCountFlagBits

Sample count flags.

tiling: ImageTiling

The tiling used.

initial_layout: ImageLayout

The initial format.

flags: Option<ImageCreateFlags>

Additional flags.

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for ImageDescriptor<'a>

impl<'a> Send for ImageDescriptor<'a>

impl<'a> Sync for ImageDescriptor<'a>

impl<'a> Unpin for ImageDescriptor<'a>

impl<'a> UnwindSafe for ImageDescriptor<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.