Struct wgpu_core::track::texture::TextureUsageScope
source · pub(crate) struct TextureUsageScope {
set: TextureStateSet,
metadata: ResourceMetadata<Arc<Texture>>,
}
Expand description
Stores all texture state within a single usage scope.
Fields§
§set: TextureStateSet
§metadata: ResourceMetadata<Arc<Texture>>
Implementations§
source§impl TextureUsageScope
impl TextureUsageScope
fn tracker_assert_in_bounds(&self, index: usize)
pub fn clear(&mut self)
sourcepub fn set_size(&mut self, size: usize)
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.
sourcepub(crate) fn is_empty(&self) -> bool
pub(crate) fn is_empty(&self) -> bool
Returns true if the tracker owns no resources.
This is a O(n) operation.
sourcepub fn merge_usage_scope(
&mut self,
scope: &Self,
) -> Result<(), ResourceUsageCompatibilityError>
pub fn merge_usage_scope( &mut self, scope: &Self, ) -> Result<(), ResourceUsageCompatibilityError>
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.
sourcepub unsafe fn merge_bind_group(
&mut self,
bind_group: &TextureViewBindGroupState,
) -> Result<(), ResourceUsageCompatibilityError>
pub unsafe fn merge_bind_group( &mut self, bind_group: &TextureViewBindGroupState, ) -> Result<(), ResourceUsageCompatibilityError>
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.
sourcepub unsafe fn merge_single(
&mut self,
texture: &Arc<Texture>,
selector: Option<TextureSelector>,
new_state: TextureUses,
) -> Result<(), ResourceUsageCompatibilityError>
pub unsafe fn merge_single( &mut self, texture: &Arc<Texture>, selector: Option<TextureSelector>, new_state: TextureUses, ) -> Result<(), ResourceUsageCompatibilityError>
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.