(&self)
| 151 | |
| 152 | #[inline] |
| 153 | fn temp_f_row_for_iter(&self) -> Result<Option<Box<[MaybeUninit<f_pixel>]>>, Error> { |
| 154 | if self.f_pixels.is_some() { |
| 155 | return Ok(None); |
| 156 | } |
| 157 | Ok(Some(temp_buf(self.width())?)) |
| 158 | } |
| 159 | |
| 160 | pub fn prepare_iter(&mut self, temp_row: &mut [MaybeUninit<RGBA>], allow_steamed: bool) -> Result<(), Error> { |
| 161 | debug_assert_eq!(temp_row.len(), self.width as _); |
no test coverage detected