[gtk+/wip/cssnode3: 5/46] stylecontext: Remove values cache
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/cssnode3: 5/46] stylecontext: Remove values cache
- Date: Tue, 10 Feb 2015 01:55:32 +0000 (UTC)
commit bbfcb78aa92499cde78f87c2ed30496b2485eeaa
Author: Benjamin Otte <otte redhat com>
Date: Sat Jan 24 18:55:54 2015 +0100
stylecontext: Remove values cache
The code is confusing the stylecontext=>node transition, so I'll remove
it.
WIth the recent introduction of the parent style cachen, I'm not sure
it's worth it at all. Some crude benchmarking suggests a slight speedup
when removing the cache.
So no guarantees about adding it back later.
gtk/gtkstylecontext.c | 65 ++----------------------------------------------
1 files changed, 3 insertions(+), 62 deletions(-)
---
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index 6a2e9a3..7396c82 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -154,7 +154,6 @@ struct _GtkStyleContextPrivate
GtkStyleCascade *cascade;
GtkStyleContext *parent;
GSList *children;
- GHashTable *style_values;
GtkCssNode *cssnode;
GSList *saved_nodes;
GArray *property_cache;
@@ -369,11 +368,6 @@ gtk_style_context_init (GtkStyleContext *style_context)
priv = style_context->priv =
gtk_style_context_get_instance_private (style_context);
- priv->style_values = g_hash_table_new_full (gtk_css_node_declaration_hash,
- gtk_css_node_declaration_equal,
- (GDestroyNotify) gtk_css_node_declaration_unref,
- g_object_unref);
-
priv->screen = gdk_screen_get_default ();
/* Create default info store */
@@ -527,8 +521,6 @@ gtk_style_context_finalize (GObject *object)
gtk_style_context_set_cascade (style_context, NULL);
- g_hash_table_destroy (priv->style_values);
-
while (priv->saved_nodes)
gtk_style_context_pop_style_node (style_context);
g_object_unref (priv->cssnode);
@@ -835,7 +827,6 @@ GtkCssStyle *
gtk_style_context_lookup_style (GtkStyleContext *context)
{
GtkStyleContextPrivate *priv;
- GtkCssNodeDeclaration *decl;
GtkCssStyle *values;
GtkCssNode *cssnode;
@@ -847,19 +838,7 @@ gtk_style_context_lookup_style (GtkStyleContext *context)
if (values)
return values;
- decl = gtk_css_node_dup_declaration (cssnode);
- values = g_hash_table_lookup (priv->style_values, decl);
- if (values)
- {
- gtk_css_node_set_style (cssnode, values);
- gtk_css_node_declaration_unref (decl);
- return values;
- }
-
- values = build_properties (context, decl, FALSE, gtk_css_node_get_parent_style (context, cssnode));
- g_hash_table_insert (priv->style_values,
- decl,
- g_object_ref (values));
+ values = build_properties (context, gtk_css_node_get_declaration (cssnode), FALSE,
gtk_css_node_get_parent_style (context, cssnode));
gtk_css_node_set_style (cssnode, values);
g_object_unref (values);
@@ -973,7 +952,7 @@ _gtk_style_context_set_widget (GtkStyleContext *context,
g_object_unref (priv->cssnode);
priv->cssnode = gtk_css_widget_node_new (widget);
gtk_css_node_set_state (priv->cssnode, GTK_STATE_FLAG_DIR_LTR);
- gtk_css_node_set_style (priv->cssnode, gtk_css_static_style_get_default (priv->screen));
+ gtk_css_node_set_style (priv->cssnode, gtk_css_static_style_get_default ());
}
if (widget)
@@ -2834,7 +2813,6 @@ gtk_style_context_clear_cache (GtkStyleContext *context)
{
gtk_css_node_set_style (l->data, NULL);
}
- g_hash_table_remove_all (priv->style_values);
gtk_style_context_clear_property_cache (context);
}
@@ -2879,43 +2857,6 @@ gtk_style_context_style_needs_full_revalidate (GtkCssStyle *style,
return FALSE;
}
-static void
-gtk_style_context_update_cache (GtkStyleContext *context,
- GtkCssChange change,
- const GtkBitmask *parent_changes)
-{
- GtkStyleContextPrivate *priv;
- GHashTableIter iter;
- GtkCssStyle *parent;
- gpointer key, value;
-
- if (change == 0 && _gtk_bitmask_is_empty (parent_changes))
- return;
-
- priv = context->priv;
- parent = gtk_css_node_get_style (gtk_style_context_get_root (context));
-
- g_hash_table_iter_init (&iter, priv->style_values);
- while (g_hash_table_iter_next (&iter, &key, &value))
- {
- const GtkCssNodeDeclaration *decl = key;
- GtkCssStyle *style = value;
-
- if (gtk_style_context_style_needs_full_revalidate (style, change))
- {
- g_hash_table_iter_remove (&iter);
- }
- else
- {
- style = update_properties (context, style, decl, FALSE, parent, parent_changes);
-
- g_hash_table_iter_replace (&iter, style);
- }
- }
-
- gtk_style_context_clear_property_cache (context);
-}
-
static gboolean
gtk_style_context_should_create_transitions (GtkStyleContext *context,
GtkCssStyle *previous_style)
@@ -3083,7 +3024,7 @@ _gtk_style_context_validate (GtkStyleContext *context,
change = _gtk_css_change_for_child (change);
- gtk_style_context_update_cache (context, change, changes);
+ gtk_style_context_clear_property_cache (context);
for (list = priv->children; list; list = list->next)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]