diff options
author | Benjamin Otte <otte@redhat.com> | 2014-05-12 03:51:14 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2014-05-14 04:28:35 +0200 |
commit | cb0b4b541086d8b25d2be055cc5174dbb380ce8e (patch) | |
tree | e16fe133baba6242caa8f513014c3d4b25c4feb3 /gtk/gtkcsstransformvalueprivate.h | |
parent | ce0835e539392c3d51df6bbd673f60db7532b159 (diff) | |
download | gtk+-cb0b4b541086d8b25d2be055cc5174dbb380ce8e.tar.gz |
css: Change CssTransformValue API
Provide API to query the matrix instead of API that applies the matrix
directly. This makes the API more flexible.
See the commits implementing shadows.
Diffstat (limited to 'gtk/gtkcsstransformvalueprivate.h')
-rw-r--r-- | gtk/gtkcsstransformvalueprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcsstransformvalueprivate.h b/gtk/gtkcsstransformvalueprivate.h index 2c57c3f5c9..49411ff88d 100644 --- a/gtk/gtkcsstransformvalueprivate.h +++ b/gtk/gtkcsstransformvalueprivate.h @@ -28,8 +28,8 @@ G_BEGIN_DECLS GtkCssValue * _gtk_css_transform_value_new_none (void); GtkCssValue * _gtk_css_transform_value_parse (GtkCssParser *parser); -gboolean _gtk_css_transform_value_apply (const GtkCssValue *transform, - cairo_t *cr); +gboolean _gtk_css_transform_value_get_matrix (const GtkCssValue *transform, + cairo_matrix_t *matrix); G_END_DECLS |