| 99 | } |
| 100 | |
| 101 | static bool cullText(float distance, float cullDistance) noexcept |
| 102 | { |
| 103 | if (cullDistance > 0) |
| 104 | return distance > cullDistance; |
| 105 | else if (cullDistance < 0) |
| 106 | return distance < -cullDistance; |
| 107 | |
| 108 | return false; |
| 109 | } |
| 110 | |
| 111 | static void renderBox(const BoundingBox& bbox, const Box& config) noexcept |
| 112 | { |
no outgoing calls
no test coverage detected