| 938 | // Helper: Verify lerp is constexpr |
| 939 | template <typename T> |
| 940 | constexpr bool constexpr_lerp_check(float a, float b, float t) { |
| 941 | return T::lerp(T(a), T(b), T(t)).raw() == T::lerp(T(a), T(b), T(t)).raw(); |
| 942 | } |
| 943 | |
| 944 | // Helper: Verify clamp is constexpr |
| 945 | template <typename T> |