From b689778ed94b34706bf97e5994a721a8648386a5 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 27 Aug 2020 19:15:05 +0200 Subject: Remove redundant depth bias fields in `iced_wgpu` --- wgpu/src/quad.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'wgpu/src/quad.rs') diff --git a/wgpu/src/quad.rs b/wgpu/src/quad.rs index f8d6c509..a115fa73 100644 --- a/wgpu/src/quad.rs +++ b/wgpu/src/quad.rs @@ -80,9 +80,6 @@ impl Pipeline { rasterization_state: Some(wgpu::RasterizationStateDescriptor { front_face: wgpu::FrontFace::Cw, cull_mode: wgpu::CullMode::None, - depth_bias: 0, - depth_bias_slope_scale: 0.0, - depth_bias_clamp: 0.0, ..Default::default() }), primitive_topology: wgpu::PrimitiveTopology::TriangleList, -- cgit