Struct wgpu_core::resource::Texture

source ·
pub struct Texture<A: Api> {
    pub(crate) inner: TextureInner<A>,
    pub(crate) device_id: Stored<DeviceId>,
    pub(crate) desc: TextureDescriptor<(), Vec<TextureFormat>>,
    pub(crate) hal_usage: TextureUses,
    pub(crate) format_features: TextureFormatFeatures,
    pub(crate) initialization_status: TextureInitTracker,
    pub(crate) full_range: TextureSelector,
    pub(crate) life_guard: LifeGuard,
    pub(crate) clear_mode: TextureClearMode<A>,
}

Fields§

§inner: TextureInner<A>§device_id: Stored<DeviceId>§desc: TextureDescriptor<(), Vec<TextureFormat>>§hal_usage: TextureUses§format_features: TextureFormatFeatures§initialization_status: TextureInitTracker§full_range: TextureSelector§life_guard: LifeGuard§clear_mode: TextureClearMode<A>

Implementations§

source§

impl<A: Api> Texture<A>

source

pub(crate) fn get_clear_view( &self, mip_level: u32, depth_or_layer: u32 ) -> &A::TextureView

Trait Implementations§

source§

impl<A: Api> Borrow<TextureSelector> for Texture<A>

source§

fn borrow(&self) -> &TextureSelector

Immutably borrows from an owned value. Read more
source§

impl<A: Debug + Api> Debug for Texture<A>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<A: Api> Resource for Texture<A>

source§

const TYPE: &'static str = "Texture"

source§

fn life_guard(&self) -> &LifeGuard

source§

fn label(&self) -> &str

source§

impl<A: HalApi> Access<Texture<A>> for Buffer<A>

source§

impl<A: HalApi> Access<Texture<A>> for Device<A>

source§

impl<A: HalApi> Access<Texture<A>> for Root

source§

impl<A: HalApi> Access<TextureView<A>> for Texture<A>

Auto Trait Implementations§

§

impl<A> !RefUnwindSafe for Texture<A>

§

impl<A> Send for Texture<A>

§

impl<A> Sync for Texture<A>

§

impl<A> Unpin for Texture<A>where <A as Api>::SurfaceTexture: Unpin, <A as Api>::Texture: Unpin, <A as Api>::TextureView: Unpin,

§

impl<A> !UnwindSafe for Texture<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> 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, 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.
source§

impl<T> WasmNotSend for Twhere T: Send,

source§

impl<T> WasmNotSync for Twhere T: Sync,