mirror of
https://github.com/yawut/SDL.git
synced 2026-07-02 08:24:03 -05:00
* Some math functions become intrinsic in release mode, so we need to convert all the math functions into SDL math functions, like we did with the stdlib functions. * Constant initializers of 8-bit values become calls to memset() in release mode, but memset() itself is an intrinsic when explicitly called. So we'll just explicitly call memset() in those cases. |
||
|---|---|---|
| .. | ||
| e_log.c | ||
| e_pow.c | ||
| e_rem_pio2.c | ||
| e_sqrt.c | ||
| k_cos.c | ||
| k_rem_pio2.c | ||
| k_sin.c | ||
| math_private.h | ||
| math.h | ||
| s_copysign.c | ||
| s_cos.c | ||
| s_fabs.c | ||
| s_floor.c | ||
| s_scalbn.c | ||
| s_sin.c | ||