Add other breaking changes to 0.13 changelog (#2831)

This commit is contained in:
Fel 2022-07-01 19:39:11 -03:00 committed by Connor Fitzgerald
parent 1796c54ffb
commit b73f8638ae

View File

@ -174,6 +174,21 @@ Limits {
}
```
`Features::CLEAR_COMMANDS` is now unnecessary and no longer exists. The feature to clear buffers and textures is now part of upstream WebGPU.
```diff
DeviceDescriptor {
// ...
features: wgpu::Features::VERTEX_WRITABLE_STORAGE
| wgpu::Features::MAPPABLE_PRIMARY_BUFFERS
| wgpu::Features::TEXTURE_BINDING_ARRAY
| wgpu::Features::BUFFER_BINDING_ARRAY
| wgpu::Features::STORAGE_RESOURCE_BINDING_ARRAY
- | wgpu::Features::CLEAR_COMMANDS
,
}
```
### Added/New Features
#### General