Struct vulkano::image::immutable::SubImage[][src]

pub struct SubImage { /* fields omitted */ }

Image whose purpose is to access only a part of one image, for any kind of access We define a part of one image here by a level of mipmap, or a layer of an array The image attribute must be an implementation of ImageAccess The mip_levels_access must be a range showing which mipmaps will be accessed The layer_levels_access must be a range showing which layers will be accessed The layout must be the layout of the image at the beginning and at the end of the command buffer

Implementations

impl SubImage[src]

pub fn new(
    image: Arc<dyn ImageAccess + Sync + Send>,
    mip_level: u32,
    mip_level_count: u32,
    layer_level: u32,
    layer_level_count: u32,
    layout: ImageLayout
) -> Arc<SubImage>
[src]

Trait Implementations

impl ImageAccess for SubImage[src]

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

Returns the inner unsafe image object used by this image.

fn initial_layout_requirement(&self) -> ImageLayout[src]

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

fn final_layout_requirement(&self) -> ImageLayout[src]

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

fn descriptor_layouts(&self) -> Option<ImageDescriptorLayouts>[src]

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

fn conflicts_buffer(&self, other: &dyn BufferAccess) -> bool[src]

Returns true if an access to self potentially overlaps the same memory as an access to other. Read more

fn conflicts_image(&self, other: &dyn ImageAccess) -> bool[src]

Returns true if an access to self potentially overlaps the same memory as an access to other. Read more

fn current_miplevels_access(&self) -> Range<u32>[src]

Returns the current mip level that is accessed by the gpu

fn current_layer_levels_access(&self) -> Range<u32>[src]

Returns the current layer level that is accessed by the gpu

fn conflict_key(&self) -> u64[src]

Returns a key that uniquely identifies the memory content of the image. Two ranges that potentially overlap in memory must return the same key. Read more

fn try_gpu_lock(
    &self,
    exclusive_access: bool,
    expected_layout: ImageLayout
) -> Result<(), AccessError>
[src]

Locks the resource for usage on the GPU. Returns an error if the lock can’t be acquired. Read more

unsafe fn increase_gpu_lock(&self)[src]

Locks the resource for usage on the GPU. Supposes that the resource is already locked, and simply increases the lock by one. Read more

unsafe fn unlock(&self, new_layout: Option<ImageLayout>)[src]

Unlocks the resource previously acquired with try_gpu_lock or increase_gpu_lock. Read more

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

Auto Trait Implementations

impl !RefUnwindSafe for SubImage

impl Send for SubImage

impl Sync for SubImage

impl Unpin for SubImage

impl !UnwindSafe for SubImage

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> Content for T[src]

pub fn ref_from_ptr(*mut c_void, usize) -> Option<*mut T>[src]

Builds a pointer to this type from a raw pointer.

pub fn is_size_suitable(usize) -> bool[src]

Returns true if the size is suitable to store a type like this.

pub fn indiv_size() -> usize[src]

Returns the size of an individual element.

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

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

Performs the conversion.

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.

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

Performs the conversion.