[][src]Struct vulkano::image::StorageImage

pub struct StorageImage<F, A = Arc<StdMemoryPool>> where
    A: MemoryPool
{ /* fields omitted */ }

General-purpose image in device memory. Can be used for any usage, but will be slower than a specialized image.

Methods

impl<F> StorageImage<F>[src]

pub fn new<'a, I>(
    device: Arc<Device>,
    dimensions: Dimensions,
    format: F,
    queue_families: I
) -> Result<Arc<StorageImage<F>>, ImageCreationError> where
    F: FormatDesc,
    I: IntoIterator<Item = QueueFamily<'a>>, 
[src]

Creates a new image with the given dimensions and format.

pub fn with_usage<'a, I>(
    device: Arc<Device>,
    dimensions: Dimensions,
    format: F,
    usage: ImageUsage,
    queue_families: I
) -> Result<Arc<StorageImage<F>>, ImageCreationError> where
    F: FormatDesc,
    I: IntoIterator<Item = QueueFamily<'a>>, 
[src]

Same as new, but allows specifying the usage.

impl<F, A> StorageImage<F, A> where
    A: MemoryPool
[src]

pub fn dimensions(&self) -> Dimensions[src]

Returns the dimensions of the image.

Trait Implementations

impl<F, A> ImageAccess for StorageImage<F, A> where
    F: 'static + Send + Sync,
    A: MemoryPool
[src]

fn format(&self) -> Format[src]

Returns the format of this image.

fn has_color(&self) -> bool[src]

Returns true if the image is a color image.

fn has_depth(&self) -> bool[src]

Returns true if the image has a depth component. In other words, if it is a depth or a depth-stencil format. Read more

fn has_stencil(&self) -> bool[src]

Returns true if the image has a stencil component. In other words, if it is a stencil or a depth-stencil format. Read more

fn mipmap_levels(&self) -> u32[src]

Returns the number of mipmap levels of this image.

fn samples(&self) -> u32[src]

Returns the number of samples of this image.

fn dimensions(&self) -> ImageDimensions[src]

Returns the dimensions of the image.

fn supports_blit_source(&self) -> bool[src]

Returns true if the image can be used as a source for blits.

fn supports_blit_destination(&self) -> bool[src]

Returns true if the image can be used as a destination for blits.

unsafe fn layout_initialized(&self)[src]

When images are created their memory layout is initially Undefined or Preinitialized. This method allows the image memory barrier creation process to signal when an image has been transitioned out of its initial Undefined or Preinitialized state. This allows vulkano to avoid creating unnecessary image memory barriers between future uses of the image. Read more

fn is_layout_initialized(&self) -> bool[src]

unsafe fn preinitialized_layout(&self) -> bool[src]

unsafe fn forced_undefined_initial_layout(
    self,
    preinitialized: bool
) -> ImageAccessFromUndefinedLayout<Self> where
    Self: Sized
[src]

Wraps around this ImageAccess and returns an identical ImageAccess but whose initial layout requirement is either Undefined or Preinitialized. Read more

impl<F, A> ImageClearValue<<F as FormatDesc>::ClearValue> for StorageImage<F, A> where
    F: FormatDesc + 'static + Send + Sync,
    A: MemoryPool
[src]

impl<P, F, A> ImageContent<P> for StorageImage<F, A> where
    F: 'static + Send + Sync,
    A: MemoryPool
[src]

impl<F, A> ImageViewAccess for StorageImage<F, A> where
    F: 'static + Send + Sync,
    A: MemoryPool
[src]

fn format(&self) -> Format[src]

Returns the format of this view. This can be different from the parent's format.

fn samples(&self) -> u32[src]

fn can_be_sampled(&self, _sampler: &Sampler) -> bool[src]

Returns true if the given sampler can be used with this image view. Read more

impl<F: Debug, A: Debug> Debug for StorageImage<F, A> where
    A: MemoryPool,
    A::Alloc: Debug
[src]

Auto Trait Implementations

impl<F, A> Unpin for StorageImage<F, A> where
    F: Unpin,
    <A as MemoryPool>::Alloc: Unpin

impl<F, A> Send for StorageImage<F, A> where
    F: Send,
    <A as MemoryPool>::Alloc: Send

impl<F, A> Sync for StorageImage<F, A> where
    F: Sync,
    <A as MemoryPool>::Alloc: Sync

impl<F, A> RefUnwindSafe for StorageImage<F, A> where
    F: RefUnwindSafe,
    <A as MemoryPool>::Alloc: RefUnwindSafe

impl<F, A> UnwindSafe for StorageImage<F, A> where
    F: UnwindSafe,
    <A as MemoryPool>::Alloc: UnwindSafe

Blanket Implementations

impl<T> ImageAccess for T where
    T: SafeDeref,
    <T as Deref>::Target: ImageAccess
[src]

fn format(&self) -> Format[src]

Returns the format of this image.

fn has_color(&self) -> bool[src]

Returns true if the image is a color image.

fn has_depth(&self) -> bool[src]

Returns true if the image has a depth component. In other words, if it is a depth or a depth-stencil format. Read more

fn has_stencil(&self) -> bool[src]

Returns true if the image has a stencil component. In other words, if it is a stencil or a depth-stencil format. Read more

fn mipmap_levels(&self) -> u32[src]

Returns the number of mipmap levels of this image.

fn samples(&self) -> u32[src]

Returns the number of samples of this image.

fn dimensions(&self) -> ImageDimensions[src]

Returns the dimensions of the image.

fn supports_blit_source(&self) -> bool[src]

Returns true if the image can be used as a source for blits.

fn supports_blit_destination(&self) -> bool[src]

Returns true if the image can be used as a destination for blits.

unsafe fn preinitialized_layout(&self) -> bool[src]

unsafe fn forced_undefined_initial_layout(
    self,
    preinitialized: bool
) -> ImageAccessFromUndefinedLayout<Self> where
    Self: Sized
[src]

Wraps around this ImageAccess and returns an identical ImageAccess but whose initial layout requirement is either Undefined or Preinitialized. Read more

impl<T> ImageViewAccess for T where
    T: SafeDeref,
    <T as Deref>::Target: ImageViewAccess
[src]

fn format(&self) -> Format[src]

Returns the format of this view. This can be different from the parent's format.

fn samples(&self) -> u32[src]

impl<T> Content for T[src]

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

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

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.

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

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

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