Struct wgpu::ImageSubresourceRange
source · [−]#[repr(C)]pub struct ImageSubresourceRange {
pub aspect: TextureAspect,
pub base_mip_level: u32,
pub mip_level_count: Option<NonZeroU32>,
pub base_array_layer: u32,
pub array_layer_count: Option<NonZeroU32>,
}
Expand description
Subresource range within an image
Fields
aspect: TextureAspect
Aspect of the texture. Color textures must be TextureAspect::All
.
base_mip_level: u32
Base mip level.
mip_level_count: Option<NonZeroU32>
Mip level count.
If Some(count)
, base_mip_level + count
must be less or equal to underlying texture mip count.
If None
, considered to include the rest of the mipmap levels, but at least 1 in total.
base_array_layer: u32
Base array layer.
array_layer_count: Option<NonZeroU32>
Layer count.
If Some(count)
, base_array_layer + count
must be less or equal to the underlying array count.
If None
, considered to include the rest of the array layers, but at least 1 in total.
Implementations
sourceimpl ImageSubresourceRange
impl ImageSubresourceRange
sourcepub fn mip_range<L>(&self, texture_desc: &TextureDescriptor<L>) -> Range<u32>
pub fn mip_range<L>(&self, texture_desc: &TextureDescriptor<L>) -> Range<u32>
Returns the mip level range of a subresource range describes for a specific texture.
sourcepub fn layer_range<L>(&self, texture_desc: &TextureDescriptor<L>) -> Range<u32>
pub fn layer_range<L>(&self, texture_desc: &TextureDescriptor<L>) -> Range<u32>
Returns the layer range of a subresource range describes for a specific texture.
Trait Implementations
sourceimpl Clone for ImageSubresourceRange
impl Clone for ImageSubresourceRange
sourcefn clone(&self) -> ImageSubresourceRange
fn clone(&self) -> ImageSubresourceRange
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ImageSubresourceRange
impl Debug for ImageSubresourceRange
sourceimpl Default for ImageSubresourceRange
impl Default for ImageSubresourceRange
sourcefn default() -> ImageSubresourceRange
fn default() -> ImageSubresourceRange
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ImageSubresourceRange
impl<'de> Deserialize<'de> for ImageSubresourceRange
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<ImageSubresourceRange, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<ImageSubresourceRange, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ImageSubresourceRange> for ImageSubresourceRange
impl PartialEq<ImageSubresourceRange> for ImageSubresourceRange
sourcefn eq(&self, other: &ImageSubresourceRange) -> bool
fn eq(&self, other: &ImageSubresourceRange) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ImageSubresourceRange) -> bool
fn ne(&self, other: &ImageSubresourceRange) -> bool
This method tests for !=
.
sourceimpl Serialize for ImageSubresourceRange
impl Serialize for ImageSubresourceRange
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ImageSubresourceRange
Auto Trait Implementations
impl RefUnwindSafe for ImageSubresourceRange
impl Send for ImageSubresourceRange
impl Sync for ImageSubresourceRange
impl Unpin for ImageSubresourceRange
impl UnwindSafe for ImageSubresourceRange
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more