| 292 | } |
| 293 | |
| 294 | inline f32 JMAFastSqrt(register f32 x) |
| 295 | { |
| 296 | register f32 recip; |
| 297 | |
| 298 | if (x > 0.0f) |
| 299 | { |
| 300 | __asm { frsqrte recip, x } |
| 301 | return recip * x; |
| 302 | } |
| 303 | return x; |
| 304 | } |
| 305 | |
| 306 | void JMAEulerToQuat(s16, s16, s16, Quaternion *); |
| 307 | void JMAQuatLerp(const Quaternion *, const Quaternion *, f32, Quaternion *); |
no outgoing calls
no test coverage detected