Merge pull request #293 from rhysd/fix-tutorial-5

Fix `wgpu::SamplerBindingType` is now parameter of `wgpu::BindingType::Sampler`
pull/303/head
sotrh 2 years ago committed by GitHub
commit 8876f93c3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -181,14 +181,13 @@ let texture_bind_group_layout = device.create_bind_group_layout(
wgpu::BindGroupLayoutEntry {
binding: 1,
visibility: wgpu::ShaderStages::FRAGMENT,
ty: wgpu::BindingType::Sampler {
// This is only for TextureSampleType::Depth
comparison: false,
// This should be true if the sample_type of the texture is:
ty: wgpu::BindingType::Sampler(
// SamplerBindingType::Comparison is only for TextureSampleType::Depth
// SamplerBindingType::Filtering if the sample_type of the texture is:
// TextureSampleType::Float { filterable: true }
// Otherwise you'll get an error.
filtering: true,
},
wgpu::SamplerBindingType::Filtering,
),
count: None,
},
],

Loading…
Cancel
Save