mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 19:57:01 +02:00
GLMHelpers: Don't redefine lerp.
Fixes GCC build error on C++20.
This commit is contained in:
parent
426c1519fd
commit
cc10a572af
1 changed files with 0 additions and 5 deletions
|
@ -211,11 +211,6 @@ T toNormalizedDeviceScale(const T& value, const T& size) {
|
||||||
#define PITCH(euler) euler.x
|
#define PITCH(euler) euler.x
|
||||||
#define ROLL(euler) euler.z
|
#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
|
// vec2 lerp - linear interpolate
|
||||||
template<typename T, glm::precision P>
|
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) {
|
glm::tvec2<T, P> lerp(const glm::tvec2<T, P>& x, const glm::tvec2<T, P>& y, T a) {
|
||||||
|
|
Loading…
Reference in a new issue