Helper to extract line style parameters
(style: LineStyle)
| 1745 | pass.set_bind_group(0, &self.camera_bind_group, &[]); |
| 1746 | pass.set_vertex_buffer(0, vb.buffer.slice(..)); |
| 1747 | pass.draw(0..4, 0..vb.vertex_count); |
| 1748 | } |
| 1749 | } |
| 1750 | |
| 1751 | // Selection overlay |
| 1752 | if let Some(pipeline) = self.pipelines.overlay.as_ref() { |
| 1753 | let mut pass = params.encoder.begin_render_pass(&RenderPassDescriptor { |
| 1754 | label: Some("selection overlay"), |
| 1755 | color_attachments: &[Some(msaa_attachment(msaa_targets, LoadOp::Load))], |
| 1756 | depth_stencil_attachment: None, |
no outgoing calls
no test coverage detected