summaryrefslogtreecommitdiff
path: root/gtk/gtkcssfontfeaturesvalue.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-01-10 01:27:49 -0500
committerMatthias Clasen <mclasen@redhat.com>2020-01-10 15:48:51 -0500
commit898e29c98929ddfbcc6cff2158f06fe9dc4e9352 (patch)
tree80b18bd07bf6c250530fb1285b9003dffc61022b /gtk/gtkcssfontfeaturesvalue.c
parentcf1700fd13de17c50ee9c6c4782d48680584e48c (diff)
downloadgtk+-898e29c98929ddfbcc6cff2158f06fe9dc4e9352.tar.gz
css: Simplify compute for font features
Font features consist of a hash table of number values, which will never change during compute, so there is no point in recreating a new value with a copy of the hash table, constaining the same string->number mapping.
Diffstat (limited to 'gtk/gtkcssfontfeaturesvalue.c')
-rw-r--r--gtk/gtkcssfontfeaturesvalue.c24
1 files changed, 1 insertions, 23 deletions
diff --git a/gtk/gtkcssfontfeaturesvalue.c b/gtk/gtkcssfontfeaturesvalue.c
index 67110a878c..1f1b3e030b 100644
--- a/gtk/gtkcssfontfeaturesvalue.c
+++ b/gtk/gtkcssfontfeaturesvalue.c
@@ -57,29 +57,7 @@ gtk_css_value_font_features_compute (GtkCssValue *specified,
GtkCssStyle *style,
GtkCssStyle *parent_style)
{
- GHashTableIter iter;
- gpointer name, val;
- GtkCssValue *computed_val;
- GtkCssValue *result;
- gboolean changes = FALSE;
-
- result = gtk_css_font_features_value_new_empty ();
-
- g_hash_table_iter_init (&iter, specified->features);
- while (g_hash_table_iter_next (&iter, &name, &val))
- {
- computed_val = _gtk_css_value_compute (val, property_id, provider, style, parent_style);
- changes |= computed_val != val;
- gtk_css_font_features_value_add_feature (result, name, computed_val);
- }
-
- if (!changes)
- {
- _gtk_css_value_unref (result);
- result = _gtk_css_value_ref (specified);
- }
-
- return result;
+ return _gtk_css_value_ref (specified);
}
static gboolean