pub(crate) struct TextureUsageScope<A: HalApi> {
    set: TextureStateSet,
    metadata: ResourceMetadata<A>,
}
Expand description

Stores all texture state within a single usage scope.

Fields§

§set: TextureStateSet§metadata: ResourceMetadata<A>

Implementations§

source§

impl<A: HalApi> TextureUsageScope<A>

source

pub fn new() -> Self

source

fn tracker_assert_in_bounds(&self, index: usize)

source

pub fn set_size(&mut self, size: usize)

Sets the size of all the vectors inside the tracker.

Must be called with the highest possible Texture ID before all unsafe functions are called.

source

pub fn used(&self) -> impl Iterator<Item = Valid<TextureId>> + '_

Returns a list of all textures tracked.

source

pub(crate) fn is_empty(&self) -> bool

Returns true if the tracker owns no resources.

This is a O(n) operation.

source

pub fn merge_usage_scope( &mut self, storage: &Storage<Texture<A>, TextureId>, scope: &Self ) -> Result<(), UsageConflict>

Merge the list of texture states in the given usage scope into this UsageScope.

If any of the resulting states is invalid, stops the merge and returns a usage conflict with the details of the invalid state.

If the given tracker uses IDs higher than the length of internal vectors, the vectors will be extended. A call to set_size is not needed.

source

pub unsafe fn merge_bind_group( &mut self, storage: &Storage<Texture<A>, TextureId>, bind_group: &TextureBindGroupState<A> ) -> Result<(), UsageConflict>

Merge the list of texture states in the given bind group into this usage scope.

If any of the resulting states is invalid, stops the merge and returns a usage conflict with the details of the invalid state.

Because bind groups do not check if the union of all their states is valid, this method is allowed to return Err on the first bind group bound.

Safety

Self::set_size must be called with the maximum possible Buffer ID before this method is called.

source

pub unsafe fn merge_single( &mut self, storage: &Storage<Texture<A>, TextureId>, id: Valid<TextureId>, selector: Option<TextureSelector>, ref_count: &RefCount, new_state: TextureUses ) -> Result<(), UsageConflict>

Merge a single state into the UsageScope.

If the resulting state is invalid, returns a usage conflict with the details of the invalid state.

Safety

Unlike other trackers whose merge_single is safe, this method is only called where there is already other unsafe tracking functions active, so we can prove this unsafe “for free”.

Self::set_size must be called with the maximum possible Buffer ID before this method is called.

Trait Implementations§

source§

impl<A: Debug + HalApi> Debug for TextureUsageScope<A>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<A> RefUnwindSafe for TextureUsageScope<A>where A: RefUnwindSafe,

§

impl<A> Send for TextureUsageScope<A>where A: Send,

§

impl<A> Sync for TextureUsageScope<A>where A: Sync,

§

impl<A> Unpin for TextureUsageScope<A>where A: Unpin,

§

impl<A> UnwindSafe for TextureUsageScope<A>where A: UnwindSafe,

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,