| 95 | } |
| 96 | |
| 97 | return viewManagerContext->getViewManager().getRenderingBackendType(); |
| 98 | } |
| 99 | |
| 100 | static inline float sanitizeYogaValue(float yogaValue) { |
| 101 | if (std::isnan(yogaValue)) { |
| 102 | return 0.0; |
| 103 | } |
| 104 | |
| 105 | return yogaValue; |
| 106 | } |
no outgoing calls
no test coverage detected