Cache for render pipelines
| 126 | struct LineRenderStyle { |
| 127 | width: Size, |
| 128 | line_style: u32, |
| 129 | style_param: f32, |
| 130 | } |
| 131 | |
| 132 | struct PolylineRef<'a> { |
| 133 | positions: &'a [[f32; 2]], |
| 134 | distances: &'a [f32], |
| 135 | colors: &'a [iced::Color], |
| 136 | } |
| 137 | |
| 138 | /// Cache for render pipelines |
nothing calls this directly
no outgoing calls
no test coverage detected