[gimp/goat-invasion: 65/241] app: default to use GEGL rather than legacy code paths



commit f9c90f403b2095ff8bd1741d537ba4589ef76b4c
Author: Ãyvind KolÃs <pippin gimp org>
Date:   Fri Mar 16 00:24:53 2012 +0000

    app: default to use GEGL rather than legacy code paths
    
    During development, the GEGL code such have as much exposure to users testing
    the development release. There is still the option to switch it off if GEGL is
    not adhering to expectations.

 app/config/gimpcoreconfig.c |    2 +-
 app/core/gimpprojection.c   |    1 +
 2 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/app/config/gimpcoreconfig.c b/app/config/gimpcoreconfig.c
index d954f8c..d15aa05 100644
--- a/app/config/gimpcoreconfig.c
+++ b/app/config/gimpcoreconfig.c
@@ -443,7 +443,7 @@ gimp_core_config_class_init (GimpCoreConfigClass *klass)
   g_object_class_install_property (object_class, PROP_USE_GEGL,
                                    g_param_spec_boolean ("use-gegl",
                                                          "Use GEGL", NULL,
-                                                         FALSE,
+                                                         TRUE,
                                                          GIMP_PARAM_READWRITE |
                                                          G_PARAM_CONSTRUCT));
 
diff --git a/app/core/gimpprojection.c b/app/core/gimpprojection.c
index 41250af..92ea946 100644
--- a/app/core/gimpprojection.c
+++ b/app/core/gimpprojection.c
@@ -155,6 +155,7 @@ gimp_projection_init (GimpProjection *proj)
   proj->idle_render.idle_id      = 0;
   proj->idle_render.update_areas = NULL;
   proj->construct_flag           = FALSE;
+  proj->use_gegl                 = TRUE;
 }
 
 static void



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]