Remove unused function

This commit is contained in:
Behdad Esfahbod 2022-12-17 13:48:05 -07:00
parent 0c77f1d9ab
commit f07ce68f9c
1 changed files with 0 additions and 7 deletions

View File

@ -544,13 +544,6 @@ interpolate (float f0, float f1, float f)
return f0 + f * (f1 - f0);
}
static inline void
interpolate_points (Point *p0, Point *p1, float f, Point *out)
{
out->x = interpolate (p0->x, p1->x, f);
out->y = interpolate (p0->y, p1->y, f);
}
void
interpolate_colors (color_t *c0, color_t *c1, float k, color_t *c)
{