@@ -115,7 +115,7 @@ use thiserror::Error;
115
115
116
116
pub ( crate ) use buffer:: { BufferBindGroupState , BufferTracker , BufferUsageScope } ;
117
117
use metadata:: { ResourceMetadata , ResourceMetadataProvider } ;
118
- pub ( crate ) use stateless:: { StatelessBindGroupSate , StatelessTracker } ;
118
+ pub ( crate ) use stateless:: { StatelessBindGroupState , StatelessTracker } ;
119
119
pub ( crate ) use texture:: {
120
120
TextureBindGroupState , TextureSelector , TextureTracker , TextureUsageScope ,
121
121
} ;
@@ -447,17 +447,17 @@ impl<T: ResourceUses> fmt::Display for InvalidUse<T> {
447
447
pub ( crate ) struct BindGroupStates < A : HalApi > {
448
448
pub buffers : BufferBindGroupState < A > ,
449
449
pub textures : TextureBindGroupState < A > ,
450
- pub views : StatelessBindGroupSate < resource:: TextureView < A > > ,
451
- pub samplers : StatelessBindGroupSate < resource:: Sampler < A > > ,
450
+ pub views : StatelessBindGroupState < resource:: TextureView < A > > ,
451
+ pub samplers : StatelessBindGroupState < resource:: Sampler < A > > ,
452
452
}
453
453
454
454
impl < A : HalApi > BindGroupStates < A > {
455
455
pub fn new ( ) -> Self {
456
456
Self {
457
457
buffers : BufferBindGroupState :: new ( ) ,
458
458
textures : TextureBindGroupState :: new ( ) ,
459
- views : StatelessBindGroupSate :: new ( ) ,
460
- samplers : StatelessBindGroupSate :: new ( ) ,
459
+ views : StatelessBindGroupState :: new ( ) ,
460
+ samplers : StatelessBindGroupState :: new ( ) ,
461
461
}
462
462
}
463
463
0 commit comments