| 9513 | } |
| 9514 | |
| 9515 | static float inline NavScoreItemDistInterval(float a0, float a1, float b0, float b1) |
| 9516 | { |
| 9517 | if (a1 < b0) |
| 9518 | return a1 - b0; |
| 9519 | if (b1 < a0) |
| 9520 | return a0 - b1; |
| 9521 | return 0.0f; |
| 9522 | } |
| 9523 | |
| 9524 | static void inline NavClampRectToVisibleAreaForMoveDir(ImGuiDir move_dir, ImRect& r, const ImRect& clip_rect) |
| 9525 | { |