Add change (#2847)

This commit is contained in:
Steven 2022-07-03 14:09:39 -07:00 committed by GitHub
parent 6befbcbca4
commit c36eb9f44b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,6 +201,13 @@ DeviceDescriptor {
}
```
`ComputePass::dispatch` has been renamed to `ComputePass::dispatch_workgroups`
```diff
- cpass.dispatch(self.work_group_count, 1, 1)
+ cpass.dispatch_workgroups(self.work_group_count, 1, 1)
```
### Added/New Features
#### General