Merge pull request #538 from zahash/surface_format

use find() instead of filter().next()
dependabot/npm_and_yarn/tar-6.2.1
Ben Hansen 2 weeks ago committed by GitHub
commit 30a9f026b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -164,9 +164,8 @@ The `limits` field describes the limit of certain types of resources that we can
// one will result in all the colors coming out darker. If you want to support non
// sRGB surfaces, you'll need to account for that when drawing to the frame.
let surface_format = surface_caps.formats.iter()
.find(|f| f.is_srgb())
.copied()
.filter(|f| f.is_srgb())
.next()
.unwrap_or(surface_caps.formats[0]);
let config = wgpu::SurfaceConfiguration {
usage: wgpu::TextureUsages::RENDER_ATTACHMENT,

Loading…
Cancel
Save