We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 215f3be + 3a9ecba commit f9f9adbCopy full SHA for f9f9adb
src/pipeline.rs
@@ -247,7 +247,7 @@ fn build<D>(
247
visibility: wgpu::ShaderStages::FRAGMENT,
248
ty: wgpu::BindingType::Texture {
249
sample_type: wgpu::TextureSampleType::Float {
250
- filterable: false,
+ filterable: true,
251
},
252
view_dimension: wgpu::TextureViewDimension::D2,
253
multisampled: false,
@@ -308,6 +308,7 @@ fn build<D>(
308
primitive: wgpu::PrimitiveState {
309
topology: wgpu::PrimitiveTopology::TriangleStrip,
310
front_face: wgpu::FrontFace::Cw,
311
+ strip_index_format: Some(wgpu::IndexFormat::Uint16),
312
..Default::default()
313
314
depth_stencil,
0 commit comments