pub struct ImageAccessFromUndefinedLayout<I> { /* private fields */ }
Expand description

Wraps around an object that implements ImageAccess and modifies the initial layout requirement to be either Undefined or Preinitialized.

Trait Implementations§

source§

impl<I: Clone> Clone for ImageAccessFromUndefinedLayout<I>

source§

fn clone(&self) -> ImageAccessFromUndefinedLayout<I>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<I: Debug> Debug for ImageAccessFromUndefinedLayout<I>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<I> DeviceOwned for ImageAccessFromUndefinedLayout<I>where I: ImageAccess,

source§

fn device(&self) -> &Arc<Device>

Returns the device that owns Self.
source§

impl<I> Hash for ImageAccessFromUndefinedLayout<I>where I: ImageAccess,

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<I> ImageAccess for ImageAccessFromUndefinedLayout<I>where I: ImageAccess,

source§

fn inner(&self) -> ImageInner<'_>

Returns the inner unsafe image object used by this image.
source§

fn initial_layout_requirement(&self) -> ImageLayout

Returns the layout that the image has when it is first used in a primary command buffer. Read more
source§

fn final_layout_requirement(&self) -> ImageLayout

Returns the layout that the image must be returned to before the end of the command buffer. Read more
source§

fn descriptor_layouts(&self) -> Option<ImageDescriptorLayouts>

Returns an ImageDescriptorLayouts structure specifying the image layout to use in descriptors of various kinds. Read more
source§

fn dimensions(&self) -> ImageDimensions

Returns the dimensions of the image.
source§

fn format(&self) -> Format

Returns the format of this image.
source§

fn format_features(&self) -> FormatFeatures

Returns the features supported by the image’s format.
source§

fn mip_levels(&self) -> u32

Returns the number of mipmap levels of this image.
source§

fn samples(&self) -> SampleCount

Returns the number of samples of this image.
source§

fn usage(&self) -> ImageUsage

Returns the usage the image was created with.
source§

fn stencil_usage(&self) -> ImageUsage

Returns the stencil usage the image was created with.
source§

fn subresource_layers(&self) -> ImageSubresourceLayers

Returns an ImageSubresourceLayers covering the first mip level of the image. All aspects of the image are selected, or plane0 if the image is multi-planar.
source§

fn subresource_range(&self) -> ImageSubresourceRange

Returns an ImageSubresourceRange covering the whole image. If the image is multi-planar, only the color aspect is selected.
source§

unsafe fn layout_initialized(&self)

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
source§

fn is_layout_initialized(&self) -> bool

source§

fn initial_layout(&self) -> ImageLayout

source§

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

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

impl<I> PartialEq<ImageAccessFromUndefinedLayout<I>> for ImageAccessFromUndefinedLayout<I>where I: ImageAccess,

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<I: Copy> Copy for ImageAccessFromUndefinedLayout<I>

source§

impl<I> Eq for ImageAccessFromUndefinedLayout<I>where I: ImageAccess,

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.