summaryrefslogtreecommitdiff
path: root/thumbnailer
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2018-05-30 09:18:16 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2018-05-30 09:18:16 +0100
commit78fcdfc82ddf7a512ebc4c7dd489f9c8066a6679 (patch)
tree0845b4829c583e23174cc409beca655711c8c0fc /thumbnailer
parent755d620392769fae6b32c9b2fcf3d0b8b7146dec (diff)
downloadgdk-pixbuf-78fcdfc82ddf7a512ebc4c7dd489f9c8066a6679.tar.gz
Deprecate GDK_INTERP_HYPERissue-3
The hyperbolic filter has been broken for the past 12 years, and nobody is going to fix it, now, as pixel operations in GdkPixbuf have been thoroughly superseded by Cairo. The only user of GDK_INTER_HYPER in tree is the thumbnailer code, which cannot use Cairo for dependency reasons. Closes: #3
Diffstat (limited to 'thumbnailer')
-rw-r--r--thumbnailer/gnome-thumbnailer-skeleton.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thumbnailer/gnome-thumbnailer-skeleton.c b/thumbnailer/gnome-thumbnailer-skeleton.c
index 73da53e07..75c0f9c10 100644
--- a/thumbnailer/gnome-thumbnailer-skeleton.c
+++ b/thumbnailer/gnome-thumbnailer-skeleton.c
@@ -301,7 +301,7 @@ int main (int argc, char **argv)
scaled = gdk_pixbuf_scale_simple (pixbuf,
floor (width * scale + 0.5),
floor (height * scale + 0.5),
- GDK_INTERP_HYPER);
+ GDK_INTERP_BILINEAR);
#endif
gdk_pixbuf_copy_options (pixbuf, scaled);
g_object_unref (pixbuf);