(lanes: Lanes)
| 711 | } |
| 712 | |
| 713 | export function isGestureRender(lanes: Lanes): boolean { |
| 714 | if (!enableGestureTransition) { |
| 715 | return false; |
| 716 | } |
| 717 | // This should render only the one lane. |
| 718 | return lanes === GestureLane; |
| 719 | } |
| 720 | |
| 721 | export function claimNextTransitionUpdateLane(): Lane { |
| 722 | // Cycle through the lanes, assigning each new transition to the next lane. |
no outgoing calls
no test coverage detected