Skip to content

Commit 1144b06

Browse files
style(readme): adjust whitespace to match previous entries
1 parent b842265 commit 1144b06

File tree

1 file changed

+44
-42
lines changed

1 file changed

+44
-42
lines changed

CHANGELOG.md

Lines changed: 44 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -52,44 +52,44 @@ Bottom level categories:
5252
#### General
5353

5454
- Many numeric built-ins have had a constant evaluation implementation added for them, which allows them to be used in a `const` context:
55-
- [#4879](https://github.com/gfx-rs/wgpu/pull/4879) by @ErichDonGubler:
56-
- `abs`
57-
- `acos`
58-
- `acosh`
59-
- `asin`
60-
- `asinh`
61-
- `atan`
62-
- `atanh`
63-
- `cos`
64-
- `cosh`
65-
- `round`
66-
- `saturate`
67-
- `sin`
68-
- `sinh`
69-
- `sqrt`
70-
- `step`
71-
- `tan`
72-
- `tanh`
73-
- [#5098](https://github.com/gfx-rs/wgpu/pull/5098) by @ErichDonGubler:
74-
- `ceil`
75-
- `countLeadingZeros`
76-
- `countOneBits`
77-
- `countTrailingZeros`
78-
- `degrees`
79-
- `exp`
80-
- `exp2`
81-
- `floor`
82-
- `fract`
83-
- `fma`
84-
- `inverseSqrt`
85-
- `log`
86-
- `log2`
87-
- `max`
88-
- `min`
89-
- `radians`
90-
- `reverseBits`
91-
- `sign`
92-
- `trunc`
55+
- [#4879](https://github.com/gfx-rs/wgpu/pull/4879) by @ErichDonGubler:
56+
- `abs`
57+
- `acos`
58+
- `acosh`
59+
- `asin`
60+
- `asinh`
61+
- `atan`
62+
- `atanh`
63+
- `cos`
64+
- `cosh`
65+
- `round`
66+
- `saturate`
67+
- `sin`
68+
- `sinh`
69+
- `sqrt`
70+
- `step`
71+
- `tan`
72+
- `tanh`
73+
- [#5098](https://github.com/gfx-rs/wgpu/pull/5098) by @ErichDonGubler:
74+
- `ceil`
75+
- `countLeadingZeros`
76+
- `countOneBits`
77+
- `countTrailingZeros`
78+
- `degrees`
79+
- `exp`
80+
- `exp2`
81+
- `floor`
82+
- `fract`
83+
- `fma`
84+
- `inverseSqrt`
85+
- `log`
86+
- `log2`
87+
- `max`
88+
- `min`
89+
- `radians`
90+
- `reverseBits`
91+
- `sign`
92+
- `trunc`
9393
- Eager release of GPU resources comes from device.trackers. By @bradwerth in [#5075](https://github.com/gfx-rs/wgpu/pull/5075)
9494
- `wgpu-types`'s `trace` and `replay` features have been replaced by the `serde` feature. By @KirmesBude in [#5149](https://github.com/gfx-rs/wgpu/pull/5149)
9595
- `wgpu-core`'s `serial-pass` feature has been removed. Use `serde` instead. By @KirmesBude in [#5149](https://github.com/gfx-rs/wgpu/pull/5149)
@@ -101,10 +101,12 @@ Bottom level categories:
101101
By @ErichDonGubler in [#5146](https://github.com/gfx-rs/wgpu/pull/5146), [#5046](https://github.com/gfx-rs/wgpu/pull/5046).
102102
- Signed and unsigned 64 bit integer support in shaders. By @rodolphito and @cwfitzgerald in [#5154](https://github.com/gfx-rs/wgpu/pull/5154)
103103
- `wgpu::Instance` can now report which `wgpu::Backends` are available based on the build configuration. By @wumpf [#5167](https://github.com/gfx-rs/wgpu/pull/5167)
104-
```diff
105-
-wgpu::Instance::any_backend_feature_enabled()
106-
+!wgpu::Instance::enabled_backend_features().is_empty()
107-
```
104+
105+
```diff
106+
-wgpu::Instance::any_backend_feature_enabled()
107+
+!wgpu::Instance::enabled_backend_features().is_empty()
108+
```
109+
108110
- `wgpu::CommandEncoder::write_timestamp` requires now the new `wgpu::Features::TIMESTAMP_QUERY_INSIDE_ENCODERS` feature which is available on all native backends but not on WebGPU (due to a spec change `write_timestamp` is no longer supported on WebGPU). By @wumpf in [#5188](https://github.com/gfx-rs/wgpu/pull/5188)
109111
- Breaking change: [`wgpu_core::pipeline::ProgrammableStageDescriptor`](https://docs.rs/wgpu-core/latest/wgpu_core/pipeline/struct.ProgrammableStageDescriptor.html#structfield.entry_point) is now optional. By @ErichDonGubler in [#5305](https://github.com/gfx-rs/wgpu/pull/5305).
110112
- `Features::downlevel{_webgl2,}_features` was made const by @MultisampledNight in [#5343](https://github.com/gfx-rs/wgpu/pull/5343)

0 commit comments

Comments
 (0)