File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ Bottom level categories:
45
45
#### Bug Fixes
46
46
- Fix GLES renderpass clears causing violation of ` max_color_attachments ` limit. By @adrian17 in [ #6994 ] ( https://github.com/gfx-rs/wgpu/pull/6994 ) .
47
47
- Fix a possible deadlock within ` Queue::write_texture ` . By @metamuffin in [ #7004 ] ( https://github.com/gfx-rs/wgpu/pull/7004 )
48
+ - Decrement ` max_storage_buffer_binding_size ` by 1 to match ` max_buffer_size ` . By @minus1ms in [ #7217 ] ( https://github.com/gfx-rs/wgpu/pull/7217 )
48
49
49
50
### v24.0.1 (2025-01-22)
50
51
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ pub mod db {
44
44
/// Interestingly, the index itself can't reach that high, because the minimum
45
45
/// element size is 4 bytes, but the compiler toolchain still computes the
46
46
/// offset at some intermediate point, internally, as i32.
47
- pub const MAX_I32_BINDING_SIZE : u32 = 1 << 31 ;
47
+ pub const MAX_I32_BINDING_SIZE : u32 = ( 1 << 31 ) - 1 ;
48
48
49
49
pub fn map_naga_stage ( stage : naga:: ShaderStage ) -> wgt:: ShaderStages {
50
50
match stage {
You can’t perform that action at this time.
0 commit comments