| 255 | |
| 256 | #[derive(Debug, Clone, Copy)] |
| 257 | struct GpuPickRequest { |
| 258 | pub cursor_x: f32, // logical px in widget local coordinates |
| 259 | pub cursor_y: f32, // logical px in widget local coordinates |
| 260 | pub radius_px: f32, // logical px |
| 261 | pub seq: u64, // monotonically increasing sequence |
| 262 | } |
| 263 | |
| 264 | #[derive(Debug, Clone)] |
| 265 | struct GpuPickResult { |
nothing calls this directly
no outgoing calls
no test coverage detected