Struct nannou::wgpu::TextureView[][src]

pub struct TextureView { /* fields omitted */ }

A convenient wrapper around a handle to a texture view along with its descriptor.

A TextureView is, perhaps unsurprisingly, a view of some existing texture. The view might be of the whole texture, but it might also be of some sub-section of the texture. When an API provides

Implementations

impl TextureView[src]

pub const DEFAULT_LABEL: &'static str[src]

pub fn info(&self) -> &TextureViewInfo[src]

pub fn descriptor(&self) -> TextureViewDescriptor<'static>[src]

pub fn format(&self) -> TextureFormat[src]

pub fn dimension(&self) -> TextureViewDimension[src]

pub fn aspect(&self) -> TextureAspect[src]

pub fn base_mip_level(&self) -> u32[src]

pub fn level_count(&self) -> Option<NonZeroU32>[src]

pub fn base_array_layer(&self) -> u32[src]

pub fn array_layer_count(&self) -> Option<NonZeroU32>[src]

pub fn sample_type(&self) -> TextureSampleType[src]

pub fn id(&self) -> TextureViewId[src]

pub fn size(&self) -> [u32; 2][src]

The width and height of the source texture.

See the extent method for producing the full width, height and depth of the source texture.

pub fn extent(&self) -> Extent3d[src]

The width, height and depth of the source texture.

pub fn texture_id(&self) -> TextureId[src]

The unique identifier associated with the texture that this view is derived from.

pub fn inner(&self) -> &Arc<TextureViewHandle>[src]

Access to the inner texture view handle.

pub fn into_inner(self) -> Arc<TextureViewHandle>[src]

Consume the TextureView and produce the inner Arc.

Trait Implementations

impl Clone for TextureView[src]

impl Debug for TextureView[src]

impl Deref for TextureView[src]

type Target = TextureViewHandle

The resulting type after dereferencing.

impl ToTextureView for TextureView[src]

Auto Trait Implementations

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[src]

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

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

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

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast<T> for T

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

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SetParameter for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,