GLMHelpers: Don't redefine lerp.

Fixes GCC build error on C++20.
This commit is contained in:
Lubosz Sarnecki 2024-08-03 14:33:57 +02:00
parent 426c1519fd
commit cc10a572af

View file

@ -211,11 +211,6 @@ T toNormalizedDeviceScale(const T& value, const T& size) {
#define PITCH(euler) euler.x
#define ROLL(euler) euler.z
// float - linear interpolate
inline float lerp(float x, float y, float a) {
return x * (1.0f - a) + (y * a);
}
// vec2 lerp - linear interpolate
template<typename T, glm::precision P>
glm::tvec2<T, P> lerp(const glm::tvec2<T, P>& x, const glm::tvec2<T, P>& y, T a) {