[Core] Rename linear_interpolate to lerp

This commit is contained in:
Aaron Franke 2020-03-16 05:07:33 -04:00
parent ad3c3e1bbb
commit 540156b387
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
48 changed files with 146 additions and 157 deletions

View file

@ -104,7 +104,7 @@ struct AudioFrame {
r = ::undenormalise(r);
}
_FORCE_INLINE_ AudioFrame linear_interpolate(const AudioFrame &p_b, float p_t) const {
_FORCE_INLINE_ AudioFrame lerp(const AudioFrame &p_b, float p_t) const {
AudioFrame res = *this;