Test helper: Fast math function
| 30 | |
| 31 | // Test helper: Fast math function |
| 32 | FL_FAST_MATH_BEGIN |
| 33 | static float fast_math_multiply(float a, float b) { |
| 34 | return a * b; |
| 35 | } |
| 36 | FL_FAST_MATH_END |
| 37 | |
| 38 | // Test helper: O3 optimized functions (macros are file-scope only on Clang) |