summaryrefslogtreecommitdiff
path: root/gsk/gskenums.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2016-12-17 07:44:10 +0100
committerBenjamin Otte <otte@redhat.com>2016-12-20 18:01:11 +0100
commit30438c6e8be4ca4a6142b4386f8596c6eb4068c8 (patch)
tree4b393400b5dfc46d3e13ffa6a6abbf41ee82e79f /gsk/gskenums.h
parent3e4fd32b54a9df53749b339fff587bfc5aaafdc9 (diff)
downloadgtk+-30438c6e8be4ca4a6142b4386f8596c6eb4068c8.tar.gz
gsk: Add cross-fade node
And implement stack crossfades with it.
Diffstat (limited to 'gsk/gskenums.h')
-rw-r--r--gsk/gskenums.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gsk/gskenums.h b/gsk/gskenums.h
index 4e0e0bf35d..1d46c9230e 100644
--- a/gsk/gskenums.h
+++ b/gsk/gskenums.h
@@ -38,6 +38,7 @@
* @GSK_CLIP_NODE: A node that clips its child to a rectangular area
* @GSK_ROUNDED_CLIP_NODE: A node that clips its child to a rounded rectangle
* @GSK_BLEND_NODE: A node the blends two children together
+ * @GSK_CROSS_FADE_NODE: A node the cross-fades between two children
*
* The type of a node determines what the node is rendering.
*
@@ -55,7 +56,8 @@ typedef enum {
GSK_OPACITY_NODE,
GSK_CLIP_NODE,
GSK_ROUNDED_CLIP_NODE,
- GSK_BLEND_NODE
+ GSK_BLEND_NODE,
+ GSK_CROSS_FADE_NODE
} GskRenderNodeType;
/**