Use bilinear scaling on embedded platforms

Modern embedded hardware should be good enough to handle that.
This commit is contained in:
Pierre Pronchery 2018-05-18 16:40:45 +02:00
parent b5e04048b6
commit 9f108bc66a

View File

@ -657,7 +657,7 @@ static void _desktopicon_set_icon(DesktopIcon * desktopicon, GdkPixbuf * icon)
{
GdkPixbuf * i = NULL;
#ifdef EMBEDDED
const GdkInterpType interp = GDK_INTERP_NEAREST;
const GdkInterpType interp = GDK_INTERP_BILINEAR;
#else
const GdkInterpType interp = GDK_INTERP_HYPER;
#endif