Use bicubic interpolation for the tracker preview. It looks fantastic, but is

slower, so we may have to make this an option instead of the only choice.
This commit is contained in:
Keir Mierle 2011-12-07 00:11:39 +00:00
parent 4fe2df3b8c
commit a0723afe20

@ -1490,7 +1490,7 @@ static ImBuf *scale_trackpreview_ibuf(ImBuf *ibuf, float zoomx, float zoomy)
CLAMP(src_x, 0, max_x);
CLAMP(src_y, 0, max_y);
bilinear_interpolation(ibuf, scaleibuf, src_x, src_y, x, y);
bicubic_interpolation(ibuf, scaleibuf, src_x, src_y, x, y);
}
}