pub struct SrgbCubemapArrayMipmap<'t>(/* private fields */);
Expand description
Represents a single mipmap level of a SrgbCubemapArray
.
Can be obtained by calling SrgbCubemapArray::mipmap()
, SrgbCubemapArray::main_level()
,
SrgbCubemapArrayLayer::mipmap()
or SrgbCubemapArrayLayer::main_level()
.
Implementations§
Source§impl<'t> SrgbCubemapArrayMipmap<'t>
impl<'t> SrgbCubemapArrayMipmap<'t>
Sourcepub fn array_size(&self) -> u32
pub fn array_size(&self) -> u32
Returns the number of array layers.
Sourcepub fn dimensions(&self) -> u32
pub fn dimensions(&self) -> u32
Returns the dimension of that image.
Sourcepub fn get_texture(&self) -> &'t SrgbCubemapArray
pub fn get_texture(&self) -> &'t SrgbCubemapArray
Returns the corresponding texture.
Sourcepub fn first_layer(&self) -> SrgbCubemapArrayLayerMipmap<'t>
pub fn first_layer(&self) -> SrgbCubemapArrayLayerMipmap<'t>
Access the first layer of this texture.
Sourcepub fn layer(&self, layer: u32) -> Option<SrgbCubemapArrayLayerMipmap<'t>>
pub fn layer(&self, layer: u32) -> Option<SrgbCubemapArrayLayerMipmap<'t>>
Access a single layer of this texture.
Methods from Deref<Target = TextureAnyMipmap<'a>>§
Sourcepub fn get_height(&self) -> Option<u32>
pub fn get_height(&self) -> Option<u32>
Returns the height of the mipmap.
Sourcepub fn get_samples(&self) -> Option<u32>
pub fn get_samples(&self) -> Option<u32>
Returns the number of samples of the texture.
Sourcepub fn get_texture(&self) -> &'a TextureAny
pub fn get_texture(&self) -> &'a TextureAny
Returns the texture.
Sourcepub fn first_layer(&self) -> TextureAnyLayerMipmap<'a>
pub fn first_layer(&self) -> TextureAnyLayerMipmap<'a>
Returns a structure that represents the first layer of this mipmap of the texture. All textures have a first layer.
Sourcepub fn layer(&self, layer: u32) -> Option<TextureAnyLayerMipmap<'a>>
pub fn layer(&self, layer: u32) -> Option<TextureAnyLayerMipmap<'a>>
Returns a structure that represents a specific layer of this mipmap of the texture.
Non-array textures have only one layer. The number of layers can be queried with
get_array_size
.
Returns None
if out of range.
Sourcepub fn get_array_size(&self) -> Option<u32>
pub fn get_array_size(&self) -> Option<u32>
Returns the array size of the texture.
Sourcepub fn raw_upload_from_pixel_buffer<P>(
&self,
source: BufferSlice<'_, [P]>,
x: Range<u32>,
y: Range<u32>,
z: Range<u32>,
)where
P: PixelValue,
pub fn raw_upload_from_pixel_buffer<P>(
&self,
source: BufferSlice<'_, [P]>,
x: Range<u32>,
y: Range<u32>,
z: Range<u32>,
)where
P: PixelValue,
Uploads data to the texture from a buffer.
§Panic
Panics if the offsets and dimensions are outside the boundaries of the texture. Panics if the buffer is not big enough to hold the data.
Sourcepub fn raw_upload_from_pixel_buffer_inverted<P>(
&self,
source: BufferSlice<'_, [P]>,
x: Range<u32>,
y: Range<u32>,
z: Range<u32>,
)where
P: PixelValue,
pub fn raw_upload_from_pixel_buffer_inverted<P>(
&self,
source: BufferSlice<'_, [P]>,
x: Range<u32>,
y: Range<u32>,
z: Range<u32>,
)where
P: PixelValue,
Uploads data to the texture from a buffer. The R, G and B components are flipped.
§Panic
Panics if the offsets and dimensions are outside the boundaries of the texture. Panics if the buffer is not big enough to hold the data.
Trait Implementations§
Source§impl<'t> Clone for SrgbCubemapArrayMipmap<'t>
impl<'t> Clone for SrgbCubemapArrayMipmap<'t>
Source§fn clone(&self) -> SrgbCubemapArrayMipmap<'t>
fn clone(&self) -> SrgbCubemapArrayMipmap<'t>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'a> Deref for SrgbCubemapArrayMipmap<'a>
impl<'a> Deref for SrgbCubemapArrayMipmap<'a>
Source§type Target = TextureAnyMipmap<'a>
type Target = TextureAnyMipmap<'a>
Source§fn deref(&self) -> &TextureAnyMipmap<'a>
fn deref(&self) -> &TextureAnyMipmap<'a>
impl<'t> Copy for SrgbCubemapArrayMipmap<'t>
Auto Trait Implementations§
impl<'t> Freeze for SrgbCubemapArrayMipmap<'t>
impl<'t> !RefUnwindSafe for SrgbCubemapArrayMipmap<'t>
impl<'t> !Send for SrgbCubemapArrayMipmap<'t>
impl<'t> !Sync for SrgbCubemapArrayMipmap<'t>
impl<'t> Unpin for SrgbCubemapArrayMipmap<'t>
impl<'t> !UnwindSafe for SrgbCubemapArrayMipmap<'t>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Content for Twhere
T: Copy,
impl<T> Content for Twhere
T: Copy,
Source§fn read<F, E>(size: usize, f: F) -> Result<T, E>
fn read<F, E>(size: usize, f: F) -> Result<T, E>
Owned
.Source§fn get_elements_size() -> usize
fn get_elements_size() -> usize
Source§fn to_void_ptr(&self) -> *const ()
fn to_void_ptr(&self) -> *const ()
Source§fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>
fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>
Source§fn is_size_suitable(size: usize) -> bool
fn is_size_suitable(size: usize) -> bool
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> SetParameter for T
impl<T> SetParameter for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.