Conversion from 11.5 fixed point to floating point.
| 262 | |
| 263 | /// Conversion from 11.5 fixed point to floating point. |
| 264 | inline F32 fixedToFloat( U16 val ) |
| 265 | { |
| 266 | return F32(val) * 0.03125f; |
| 267 | } |
| 268 | |
| 269 | /// Conversion from floating point to 11.5 fixed point. |
| 270 | inline U16 floatToFixed( F32 val ) |
no outgoing calls
no test coverage detected