You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
learn-wgpu/docs/news/0.14/readme.md

26 lines
843 B
Markdown

2 years ago
# Update to 0.14!
Not much has change as api wise at least as far as this tutorial is concerned. Here are the changes I had to make:
## SurfaceConfiguration changes
`SurfaceConfiguration` now expects an `alpha_mode` parameter. I believe this is to support transparent windows, but I haven't read into it. The code changes are minimal:
```rust
let config = wgpu::SurfaceConfiguration {
usage: wgpu::TextureUsages::RENDER_ATTACHMENT,
format: surface.get_supported_formats(&adapter)[0],
width: size.width,
height: size.height,
present_mode: wgpu::PresentMode::Fifo,
alpha_mode: wgpu::CompositeAlphaMode::Auto, // NEW!
};
```
## Winit updated
Winit has been updated to version "0.27" so if you build on linux you may need to update some of your packages:
```bash
sudo apt install libfontconfig libfontconfig1-dev
```