(&mut self, a: usize, b: usize)
| 307 | |
| 308 | #[cfg_attr(debug_assertions, track_caller)] |
| 309 | pub(crate) fn swap(&mut self, a: usize, b: usize) { |
| 310 | self.colors.swap(a, b); |
| 311 | self.pops.swap(a, b); |
| 312 | } |
| 313 | |
| 314 | /// Also rounds the input pal |
| 315 | pub(crate) fn init_int_palette(&mut self, int_palette: &mut Palette, gamma: f64, posterize: u8) { |
no outgoing calls
no test coverage detected