Update CHANGELOG.md

This commit is contained in:
Connor Fitzgerald
2023-04-19 21:54:23 -04:00
committed by GitHub
parent 011a4e26d0
commit 0b53b477c5

View File

@@ -44,6 +44,15 @@ Bottom level categories:
### Major changes
#### Shader Changes
`type` has been replaced with `alias` to match with upstream WebGPU.
```diff
- type MyType = vec4<u32>;
+ alias MyType = vec4<u32>;
```
#### TextureFormat info API
The `TextureFormat::describe` function was removed in favor of separate functions: `block_dimensions`, `is_compressed`, `is_srgb`, `required_features`, `guaranteed_format_features`, `sample_type` and `block_size`.