pub struct TextureAnyImage<'a> { /* private fields */ }
Expand description

Represents a specific 2D image of a texture. 1D textures are considered as having a height of 1.

Implementations§

source§

impl<'a> TextureAnyImage<'a>

source

pub fn get_texture(&self) -> &'a TextureAny

Returns the texture.

source

pub fn get_level(&self) -> u32

Returns the level of the texture.

source

pub fn get_layer(&self) -> u32

Returns the layer of the texture.

source

pub fn get_cubemap_layer(&self) -> Option<CubeLayer>

Returns the cubemap layer of this image, or None if the texture is not a cubemap.

source

pub fn get_width(&self) -> u32

Returns the width of this texture slice.

source

pub fn get_height(&self) -> Option<u32>

Returns the height of this texture slice.

source

pub fn get_samples(&self) -> Option<u32>

Returns the number of samples of the texture.

source

pub fn raw_read<T, P>(&self, rect: &Rect) -> Twhere T: Texture2dDataSink<P>, P: PixelValue,

Reads the content of the image.

Panic
  • Panics if the rect is out of range.
  • Panics if it fails to read the texture.
source

pub fn raw_read_to_pixel_buffer<P>(&self, rect: &Rect, dest: &PixelBuffer<P>)where P: PixelValue,

Reads the content of the image to a pixel buffer.

Panic
  • Panics if the rect is out of range.
  • Panics if the buffer is not large enough.
  • Panics if it fails to read the texture.
source

pub fn raw_clear_buffer<D>(&self, data: D)where D: Into<ClearBufferData>,

Clears the content of the texture to a specific value.

Panic

Panics if data does not match the kind of texture. For example passing a [i32; 4] when using a regular (float) texture.

Trait Implementations§

source§

impl<'a> Clone for TextureAnyImage<'a>

source§

fn clone(&self) -> TextureAnyImage<'a>

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<'t> Into<TextureAnyImage<'t>> for CompressedCubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedCubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedSrgbCubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedSrgbCubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedSrgbTexture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedSrgbTexture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedSrgbTexture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedSrgbTexture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedSrgbTexture3dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedTexture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedTexture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedTexture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedTexture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CompressedTexture3dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for CubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthCubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthCubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilCubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilCubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilTexture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilTexture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilTexture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilTexture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilTexture2dMultisampleArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilTexture2dMultisampleMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthStencilTexture3dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthTexture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthTexture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthTexture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthTexture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthTexture2dMultisampleArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthTexture2dMultisampleMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for DepthTexture3dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralCubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralCubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralTexture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralTexture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralTexture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralTexture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralTexture2dMultisampleArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralTexture2dMultisampleMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for IntegralTexture3dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbCubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbCubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbTexture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbTexture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbTexture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbTexture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbTexture2dMultisampleArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbTexture2dMultisampleMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for SrgbTexture3dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for StencilCubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for StencilCubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for StencilTexture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for StencilTexture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for StencilTexture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for StencilTexture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for StencilTexture2dMultisampleArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for StencilTexture2dMultisampleMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for Texture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for Texture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for Texture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for Texture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for Texture2dMultisampleArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for Texture2dMultisampleMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for Texture3dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedCubemapArrayImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedCubemapImage<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedTexture1dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedTexture1dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedTexture2dArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedTexture2dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedTexture2dMultisampleArrayLayerMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedTexture2dMultisampleMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'t> Into<TextureAnyImage<'t>> for UnsignedTexture3dMipmap<'t>

source§

fn into(self) -> TextureAnyImage<'t>

Converts this type into the (usually inferred) input type.
source§

impl<'a> Copy for TextureAnyImage<'a>

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for TextureAnyImage<'a>

§

impl<'a> !Send for TextureAnyImage<'a>

§

impl<'a> !Sync for TextureAnyImage<'a>

§

impl<'a> Unpin for TextureAnyImage<'a>

§

impl<'a> !UnwindSafe for TextureAnyImage<'a>

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> Content for Twhere T: Copy,

§

type Owned = T

A type that holds a sized version of the content.
source§

fn read<F, E>(size: usize, f: F) -> Result<T, E>where F: FnOnce(&mut T) -> Result<(), E>,

Prepares an output buffer, then turns this buffer into an Owned.
source§

fn get_elements_size() -> usize

Returns the size of each element.
source§

fn to_void_ptr(&self) -> *const ()

Produces a pointer to the data.
source§

fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>

Builds a pointer to this type from a raw pointer.
source§

fn is_size_suitable(size: usize) -> bool

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

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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

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

Performs the conversion.