File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ By @brodycj in [#6924](https://github.com/gfx-rs/wgpu/pull/6924).
90
90
#### Dx12
91
91
92
92
- Fix HLSL storage format generation. By @Vecvec in [ #6993 ] ( https://github.com/gfx-rs/wgpu/pull/6993 )
93
+ - Fix 3D storage texture bindings. By @SparkyPotato in [ #7071 ] ( https://github.com/gfx-rs/wgpu/pull/7071 )
93
94
94
95
#### WebGPU
95
96
Original file line number Diff line number Diff line change @@ -184,8 +184,8 @@ impl ViewDescriptor {
184
184
desc. ViewDimension = Direct3D12 :: D3D12_UAV_DIMENSION_TEXTURE3D ;
185
185
desc. Anonymous . Texture3D = Direct3D12 :: D3D12_TEX3D_UAV {
186
186
MipSlice : self . mip_level_base ,
187
- FirstWSlice : self . array_layer_base ,
188
- WSize : self . array_layer_count ,
187
+ FirstWSlice : 0 ,
188
+ WSize : u32 :: MAX ,
189
189
}
190
190
}
191
191
wgt:: TextureViewDimension :: Cube | wgt:: TextureViewDimension :: CubeArray => {
You can’t perform that action at this time.
0 commit comments