| 330 | } |
| 331 | |
| 332 | struct PendingReadback { |
| 333 | instance_id: u64, |
| 334 | seq: u64, |
| 335 | needed: u64, |
| 336 | bytes_per_row: u32, |
| 337 | max_w: u32, |
| 338 | max_h: u32, |
| 339 | min_x: u32, |
| 340 | min_y: u32, |
| 341 | cx: u32, |
| 342 | cy: u32, |
| 343 | map_status: Arc<Mutex<Option<Result<(), BufferAsyncError>>>>, |
| 344 | } |
| 345 | |
| 346 | impl Default for PickingPass { |
| 347 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected