true == abort
(&self, percent: f32)
| 222 | |
| 223 | // true == abort |
| 224 | pub(crate) fn remap_progress(&self, percent: f32) -> bool { |
| 225 | self.progress_callback.as_ref().map_or(false, |cb| cb(percent) == ControlFlow::Break) |
| 226 | } |
| 227 | |
| 228 | /// Remap image into a palette + indices. |
| 229 | /// |
no outgoing calls
no test coverage detected