[gegl] config: make GEGL fast by default
- From: Øyvind Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] config: make GEGL fast by default
- Date: Wed, 27 Apr 2011 21:40:19 +0000 (UTC)
commit 37218d2873e1dedafdbb0d1bd1ac85108f1eb1ab
Author: �yvind Kolås <pippin gimp org>
Date: Wed Apr 27 01:57:52 2011 +0100
config: make GEGL fast by default
Set a babl tolerance of 0.002 by default, this makes GEGL pick babl fast paths most of the time.
gegl/gegl-config.c | 34 ++++++++++++++++++++++++----------
1 files changed, 24 insertions(+), 10 deletions(-)
---
diff --git a/gegl/gegl-config.c b/gegl/gegl-config.c
index c1d5bc7..de243a9 100644
--- a/gegl/gegl-config.c
+++ b/gegl/gegl-config.c
@@ -116,14 +116,27 @@ gegl_config_set_property (GObject *gobject,
return;
case PROP_BABL_TOLERANCE:
{
+ static gboolean first = TRUE;
+ static gboolean overridden = FALSE;
+
gchar buf[256];
- config->babl_tolerance = g_value_get_double (value);
- g_sprintf (buf, "%f", config->babl_tolerance);
- g_setenv ("BABL_TOLERANCE", buf, 0);
- /* babl picks up the babl error through the environment, babl
- * caches valid conversions though so this needs to be set
- * before any processing is done
- */
+
+ if (first)
+ {
+ if (g_getenv ("BABL_TOLERANCE") != NULL)
+ overridden = TRUE;
+ first = FALSE;
+ }
+ if (!overridden)
+ {
+ config->babl_tolerance = g_value_get_double (value);
+ g_sprintf (buf, "%f", config->babl_tolerance);
+ g_setenv ("BABL_TOLERANCE", buf, 0);
+ /* babl picks up the babl error through the environment, babl
+ * caches valid conversions though so this needs to be set
+ * before any processing is done
+ */
+ }
}
return;
case PROP_SWAP:
@@ -175,7 +188,7 @@ gegl_config_class_init (GeglConfigClass *klass)
g_object_class_install_property (gobject_class, PROP_CACHE_SIZE,
g_param_spec_int ("cache-size", "Cache size", "size of cache in bytes",
- 0, G_MAXINT, 256*1024*1024,
+ 0, G_MAXINT, 512*1024*1024,
G_PARAM_READWRITE));
@@ -192,8 +205,9 @@ gegl_config_class_init (GeglConfigClass *klass)
g_object_class_install_property (gobject_class, PROP_BABL_TOLERANCE,
g_param_spec_double ("babl-tolerance", "babl error", "the error tolerance babl operates with",
- 0.0, 0.2, 0.0001,
- G_PARAM_READWRITE));
+ 0.0, 0.2, 0.002,
+ G_PARAM_READWRITE|
+ G_PARAM_CONSTRUCT));
g_object_class_install_property (gobject_class, PROP_SWAP,
g_param_spec_string ("swap", "Swap", "where gegl stores it's swap files", NULL,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]