mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-08 05:04:09 +00:00
Merge branch 'master' into master
This commit is contained in:
commit
b79f77634d
21 changed files with 2403 additions and 74 deletions
|
@ -12,5 +12,6 @@ inline float Atan(float x) { return atanf(x); }
|
|||
inline float Atan2(float y, float x) { return atan2f(y, x); }
|
||||
inline float Abs(float x) { return fabs(x); }
|
||||
inline float Sqrt(float x) { return sqrtf(x); }
|
||||
inline float RecipSqrt(float x) { return 1.0f/Sqrt(x); }
|
||||
inline float RecipSqrt(float x, float y) { return x/Sqrt(y); }
|
||||
inline float RecipSqrt(float x) { return RecipSqrt(1.0f, x); }
|
||||
inline float Pow(float x, float y) { return powf(x, y); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue