(size_mode: u32, pickable: bool)
| 22 | pub(crate) const MARKER_PICKABLE_BIT: u32 = 0b10; |
| 23 | |
| 24 | pub(crate) fn marker_flags(size_mode: u32, pickable: bool) -> u32 { |
| 25 | (size_mode & MARKER_SIZE_MODE_MASK) | if pickable { MARKER_PICKABLE_BIT } else { 0 } |
| 26 | } |
| 27 | |
| 28 | #[repr(C)] |
| 29 | #[derive(Copy, Clone, Debug)] |
no outgoing calls
no test coverage detected