(&self)
| 146 | |
| 147 | #[must_use] |
| 148 | fn should_use_low_memory(&self) -> bool { |
| 149 | self.width() * self.height() > LIQ_HIGH_MEMORY_LIMIT / std::mem::size_of::<f_pixel>() |
| 150 | } |
| 151 | |
| 152 | #[inline] |
| 153 | fn temp_f_row_for_iter(&self) -> Result<Option<Box<[MaybeUninit<f_pixel>]>>, Error> { |
no test coverage detected