summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-01-10 12:14:41 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-06-14 16:08:24 -0400
commit6f92c7942eeffa2cb042f9918a83997fd7bb9a0e (patch)
treefbda0f144eb94e49150a8d9ad15082cd296c8f26
parentc184458ab3b583ab2fa6e0a6da5934941b3cbe7d (diff)
downloadgtk+-6f92c7942eeffa2cb042f9918a83997fd7bb9a0e.tar.gz
updateiconcache: Don't include image data by default anymore
Since large images are in the icon cache, and apps don't tend to use that many icons anymore, simply don't include image data and instead make apps load files from disk. Additionally, since they're stored in GdkPixbuf data, that means that we have to first convert them either to a cairo_surface_t, which requires converting pixel data to be premulitplied, or an OpenGL texture, which requires a whole GPU upload anyway. So, even with the icon cache, the goal of icons through zero-copy, mmap()'d data from disk just isn't doable with the icon cache format we have. The icon cache on my disk is nearing 100MB, since we include a bunch of high-resolution application icons, that I doubt would be used by apps at all. Removing this inefficient pixel data makes memory usage for all applications go down, with no speed loss. The icon cache also, however, has an index of what icons are in each folder, which prevents a readdir() and allows GTK+ to know what icon is where without having to do a bunch of stat(); calls. Keeping this data is good for GTK+, so we should still keep the index. It doesn't make sense to remove any code for mapping pixel data from the icon cache. There's a plan in the works to have a symbolic icon cache that does pixel math on 16x16 icons to prevent slow SVG rendering. 16x16 pixels are fairly small, and such images are flat colors, which should compress easily, so the icon cache would be worthwhile here. So let's keep the code around in preparation for that case. https://bugzilla.gnome.org/show_bug.cgi?id=721895
-rw-r--r--gtk/updateiconcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/updateiconcache.c b/gtk/updateiconcache.c
index b186e9ad70..36b915817c 100644
--- a/gtk/updateiconcache.c
+++ b/gtk/updateiconcache.c
@@ -44,7 +44,7 @@
static gboolean force_update = FALSE;
static gboolean ignore_theme_index = FALSE;
static gboolean quiet = FALSE;
-static gboolean index_only = FALSE;
+static gboolean index_only = TRUE;
static gboolean validate = FALSE;
static gchar *var_name = "-";