Skip to content

N26: Learn Wgpu #807

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 8, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions content/news/026/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,17 @@ As the godot-rust community keeps growing, the project can now be found

## Learning Material Updates

### Learn WGPU Updated: No more swap chains!

As part of the update to 0.10 the wgpu team removed the `SwapChain` from the
API. The `surface` will now be used to retrieve textures to render to wrapped
in `SurfaceTexture`s. You configure the `Surface` in a similar way to how you
would configure the `SwapChain` except the struct is now called
`SurfaceConfiguration` instead of `SwapChainDescriptor`. If you want to know
more, you can check [the tutorial].

[the tutorial]: https://sotrh.github.io/learn-wgpu/news

## Tooling Updates

## Library Updates
Expand Down