Typo, add missing "else"
This commit is contained in:
@@ -103,6 +103,7 @@ inline float linearInterpolate( float v0, float v1, float x )
|
||||
#else
|
||||
return fma( x, v1-v0, v0 );
|
||||
#endif
|
||||
#else
|
||||
return x * (v1-v0) + v0;
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user