| 252 | } |
| 253 | |
| 254 | static void zero4(float out[4]) FL_NOEXCEPT { |
| 255 | out[0] = out[1] = out[2] = out[3] = 0.0f; |
| 256 | } |
| 257 | |
| 258 | static void normalize4_if_needed(float out[4]) FL_NOEXCEPT { |
| 259 | const float m = fl::max(fl::max(out[0], out[1]), fl::max(out[2], out[3])); |
no outgoing calls
no test coverage detected