Home
last modified time | relevance | path

Searched refs:check_draw_pixel (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/plotters/src/drawing/backend_impl/
Dmocked.rs30 check_draw_pixel: VecDeque<Box<dyn FnMut(RGBAColor, BackendCoord)>>, field
69 check_draw_pixel: vec![].into(), in new()
80 def_set_checker_func!(check_draw_pixel, RGBAColor, BackendCoord);
139 if let Some(mut checker) = self.check_draw_pixel.pop_front() { in draw_pixel()
142 if self.check_draw_pixel.is_empty() { in draw_pixel()
143 self.check_draw_pixel.push_back(checker); in draw_pixel()
/external/rust/crates/plotters/src/element/
Dbasic_shapes.rs47 m.check_draw_pixel(|c, (x, y)| { in test_pixel_element()