Skip to content

Commit c1291bd

Browse files
authored
Fix Merge Issues Between #5301 and #5508 (#5549)
1 parent 6a616a5 commit c1291bd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ Bottom level categories:
118118
- `wgpu::Texture::as_hal` now returns a user-defined type to match the other as_hal functions
119119

120120
- Added support for pipeline-overridable constants. By @teoxoy & @jimblandy in [#5500](https://github.com/gfx-rs/wgpu/pull/5500)
121+
- Add `SUBGROUP, SUBGROUP_VERTEX, SUBGROUP_BARRIER` features. By @exrook and @lichtso in [#5301](https://github.com/gfx-rs/wgpu/pull/5301)
121122
- Support disabling zero-initialization of workgroup local memory in compute shaders. By @DJMcNab in [#5508](https://github.com/gfx-rs/wgpu/pull/5508)
122123

123124
#### GLES
@@ -139,7 +140,6 @@ Bottom level categories:
139140
### Bug Fixes
140141

141142
#### General
142-
- Add `SUBGROUP, SUBGROUP_VERTEX, SUBGROUP_BARRIER` features. By @exrook and @lichtso in [#5301](https://github.com/gfx-rs/wgpu/pull/5301)
143143
- Fix `serde` feature not compiling for `wgpu-types`. By @KirmesBude in [#5149](https://github.com/gfx-rs/wgpu/pull/5149)
144144
- Fix the validation of vertex and index ranges. By @nical in [#5144](https://github.com/gfx-rs/wgpu/pull/5144) and [#5156](https://github.com/gfx-rs/wgpu/pull/5156)
145145
- Fix panic when creating a surface while no backend is available. By @wumpf [#5166](https://github.com/gfx-rs/wgpu/pull/5166)

tests/tests/subgroup_operations/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use std::{borrow::Cow, collections::HashMap, num::NonZeroU64};
1+
use std::{borrow::Cow, num::NonZeroU64};
22

33
use wgpu_test::{gpu_test, GpuTestConfiguration, TestParameters};
44

@@ -62,7 +62,7 @@ static SUBGROUP_OPERATIONS: GpuTestConfiguration = GpuTestConfiguration::new()
6262
layout: Some(&pipeline_layout),
6363
module: &cs_module,
6464
entry_point: "main",
65-
constants: &HashMap::default(),
65+
compilation_options: Default::default(),
6666
});
6767

6868
let bind_group = device.create_bind_group(&wgpu::BindGroupDescriptor {

0 commit comments

Comments
 (0)