mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
aaedc7b67f
This is only a small performance boost by itself, but it's necessary for animations, so we need it. Benchmark numbers for my Glade benchmark for interested people: GTK 3.4.0 last commit this commit Raleigh real 0m41.879s 0m10.176s 0m9.900s user 0m41.394s 0m9.895s 0m9.628s sys 0m0.111s 0m0.096s 0m0.102s Adwaita (*) real 0m51.049s 0m13.432s 0m14.848s 0m12.253s user 0m50.487s 0m13.034s 0m13.218s 0m11.927s sys 0m0.117s 0m0.151s 0m0.147s 0m0.107s Ambiance (patched to not use private GTK APIs) real 0m52.167s 0m13.115s 0m13.117s 0m12.944s user 0m51.576s 0m12.739s 0m12.768s 0m12.651s sys 0m0.119s 0m0.137s 0m0.136s 0m0.118s (*) Adwaita and unico currently use custom properties, and _gtk_css_value_compare() for custom properties always returns FALSE, which makes this optimization never trigger. So I modified _gtk_css_value_compare() to return TRUE for these properties instead and reran the benchmark. Those are the numbers.
80 lines
3.9 KiB
C
80 lines
3.9 KiB
C
/*
|
|
* Copyright © 2012 Red Hat Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Authors: Benjamin Otte <otte@gnome.org>
|
|
*/
|
|
|
|
#ifndef __GTK_CSS_COMPUTED_VALUES_PRIVATE_H__
|
|
#define __GTK_CSS_COMPUTED_VALUES_PRIVATE_H__
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "gtk/gtkbitmaskprivate.h"
|
|
#include "gtk/gtkcsssection.h"
|
|
#include "gtk/gtkstylecontext.h"
|
|
#include "gtk/gtkcssvalueprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GTK_TYPE_CSS_COMPUTED_VALUES (_gtk_css_computed_values_get_type ())
|
|
#define GTK_CSS_COMPUTED_VALUES(obj) (G_TYPE_CHECK_INSTANCE_CAST (obj, GTK_TYPE_CSS_COMPUTED_VALUES, GtkCssComputedValues))
|
|
#define GTK_CSS_COMPUTED_VALUES_CLASS(cls) (G_TYPE_CHECK_CLASS_CAST (cls, GTK_TYPE_CSS_COMPUTED_VALUES, GtkCssComputedValuesClass))
|
|
#define GTK_IS_CSS_COMPUTED_VALUES(obj) (G_TYPE_CHECK_INSTANCE_TYPE (obj, GTK_TYPE_CSS_COMPUTED_VALUES))
|
|
#define GTK_IS_CSS_COMPUTED_VALUES_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE (obj, GTK_TYPE_CSS_COMPUTED_VALUES))
|
|
#define GTK_CSS_COMPUTED_VALUES_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CSS_COMPUTED_VALUES, GtkCssComputedValuesClass))
|
|
|
|
typedef struct _GtkCssComputedValues GtkCssComputedValues;
|
|
typedef struct _GtkCssComputedValuesClass GtkCssComputedValuesClass;
|
|
|
|
struct _GtkCssComputedValues
|
|
{
|
|
GObject parent;
|
|
|
|
GPtrArray *values;
|
|
GPtrArray *sections;
|
|
};
|
|
|
|
struct _GtkCssComputedValuesClass
|
|
{
|
|
GObjectClass parent_class;
|
|
};
|
|
|
|
GType _gtk_css_computed_values_get_type (void) G_GNUC_CONST;
|
|
|
|
GtkCssComputedValues * _gtk_css_computed_values_new (void);
|
|
|
|
void _gtk_css_computed_values_compute_value (GtkCssComputedValues *values,
|
|
GtkStyleContext *context,
|
|
guint id,
|
|
GtkCssValue *specified,
|
|
GtkCssSection *section);
|
|
void _gtk_css_computed_values_set_value (GtkCssComputedValues *values,
|
|
guint id,
|
|
GtkCssValue *value,
|
|
GtkCssSection *section);
|
|
|
|
GtkCssValue * _gtk_css_computed_values_get_value (GtkCssComputedValues *values,
|
|
guint id);
|
|
GtkCssSection * _gtk_css_computed_values_get_section (GtkCssComputedValues *values,
|
|
guint id);
|
|
GtkBitmask * _gtk_css_computed_values_get_difference (GtkCssComputedValues *values,
|
|
GtkCssComputedValues *other);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GTK_CSS_COMPUTED_VALUES_PRIVATE_H__ */
|