From 8f6e3df4ce1b570a9f71ed0383427b85b4378144 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 11 Jul 2017 10:40:05 +0200 Subject: thumbnail: Remove obsolete pixbuf helper https://bugzilla.gnome.org/show_bug.cgi?id=785198 origin commit: https://gitlab.gnome.org/GNOME/gnome-desktop/commit/2887d75 --- libmate-desktop/mate-thumbnail-pixbuf-utils.c | 65 --------------------------- 1 file changed, 65 deletions(-) delete mode 100644 libmate-desktop/mate-thumbnail-pixbuf-utils.c (limited to 'libmate-desktop/mate-thumbnail-pixbuf-utils.c') diff --git a/libmate-desktop/mate-thumbnail-pixbuf-utils.c b/libmate-desktop/mate-thumbnail-pixbuf-utils.c deleted file mode 100644 index ee00655..0000000 --- a/libmate-desktop/mate-thumbnail-pixbuf-utils.c +++ /dev/null @@ -1,65 +0,0 @@ -/* - * mate-thumbnail-pixbuf-utils.c: Utilities for handling pixbufs when thumbnailing - * - * Copyright (C) 2002 Red Hat, Inc. - * - * This file is part of the Mate Library. - * - * The Mate Library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * The Mate Library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with the Mate Library; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Author: Alexander Larsson - */ - -#include - -#include -#include -#include - -#define MATE_DESKTOP_USE_UNSTABLE_API -#include "mate-desktop-thumbnail.h" - -/** - * mate_desktop_thumbnail_scale_down_pixbuf: - * @pixbuf: a #GdkPixbuf - * @dest_width: the desired new width - * @dest_height: the desired new height - * - * Scales the pixbuf to the desired size. This function - * used to be a lot faster than gdk-pixbuf when scaling - * down by large amounts. This is not true anymore since - * gdk-pixbuf UNRELEASED. You should use - * gdk_pixbuf_scale_simple() instead, which this function - * now does internally. - * - * Return value: (transfer full): a scaled pixbuf - * - * Since: 2.2 - **/ -GdkPixbuf * -mate_desktop_thumbnail_scale_down_pixbuf (GdkPixbuf *pixbuf, - int dest_width, - int dest_height) -{ - g_return_val_if_fail (GDK_IS_PIXBUF (pixbuf), NULL); - g_return_val_if_fail (gdk_pixbuf_get_width (pixbuf) >= dest_width, NULL); - g_return_val_if_fail (gdk_pixbuf_get_height (pixbuf) >= dest_height, NULL); - - if (dest_width == 0 || dest_height == 0) - return NULL; - - return gdk_pixbuf_scale_simple (pixbuf, dest_width, dest_height, GDK_INTERP_HYPER); -} -- cgit v1.2.1