diff options
author | Benjamin Otte <otte@redhat.com> | 2016-12-15 05:42:31 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-12-20 18:01:11 +0100 |
commit | e8cd71228ad47b241ac43d0b9754d57615f28fff (patch) | |
tree | 9103a3a6aff61b1f09de3868bd59aa1b5325aef1 /gsk/gskenums.h | |
parent | cf520b7a1f932100a0b87e85a4501d56e30762cc (diff) | |
download | gtk+-e8cd71228ad47b241ac43d0b9754d57615f28fff.tar.gz |
gsk: Implement linear gradient render nodes
Diffstat (limited to 'gsk/gskenums.h')
-rw-r--r-- | gsk/gskenums.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gsk/gskenums.h b/gsk/gskenums.h index d647495d6d..4e0e0bf35d 100644 --- a/gsk/gskenums.h +++ b/gsk/gskenums.h @@ -28,6 +28,9 @@ * @GSK_CONTAINER_NODE: A node containing a stack of children * @GSK_CAIRO_NODE: A node drawing a #cairo_surface_t * @GSK_COLOR_NODE: A node drawing a single color rectangle + * @GSK_LINEAR_GRADIENT_NODE: A node drawing a linear gradient + * @GSK_REPEATING_LINEAR_GRADIENT_NODE: A node drawing a repeating + * linear gradient * @GSK_TEXTURE_NODE: A node drawing a #GskTexture * @GSK_TRANSFORM_NODE: A node that renders its child after applying a * matrix transform @@ -45,6 +48,8 @@ typedef enum { GSK_CONTAINER_NODE, GSK_CAIRO_NODE, GSK_COLOR_NODE, + GSK_LINEAR_GRADIENT_NODE, + GSK_REPEATING_LINEAR_GRADIENT_NODE, GSK_TEXTURE_NODE, GSK_TRANSFORM_NODE, GSK_OPACITY_NODE, |