[Xcb-commit] src
Julien Danjou
jdanjou at kemper.freedesktop.org
Thu Oct 16 14:43:24 PDT 2008
src/render.xml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
New commits:
commit 11e7ac02c2298b930996dbfdc78b3328c81d564e
Author: minami <minami at mistfall.net>
Date: Thu Oct 16 23:42:23 2008 +0200
render: fix missing field in gradient proto
Signed-off-by: Julien Danjou <julien at danjou.info>
diff --git a/src/render.xml b/src/render.xml
index 461fc61..654eec9 100644
--- a/src/render.xml
+++ b/src/render.xml
@@ -526,6 +526,12 @@ for licensing information.
<field type="POINTFIX" name="p1" />
<field type="POINTFIX" name="p2" />
<field type="CARD32" name="num_stops" />
+ <list type="FIXED" name="stops">
+ <fieldref>num_stops</fieldref>
+ </list>
+ <list type="COLOR" name="colors">
+ <fieldref>num_stops</fieldref>
+ </list>
</request>
<request name="CreateRadialGradient" opcode="35">
@@ -535,6 +541,12 @@ for licensing information.
<field type="FIXED" name="inner_radius" />
<field type="FIXED" name="outer_radius" />
<field type="CARD32" name="num_stops" />
+ <list type="FIXED" name="stops">
+ <fieldref>num_stops</fieldref>
+ </list>
+ <list type="COLOR" name="colors">
+ <fieldref>num_stops</fieldref>
+ </list>
</request>
<request name="CreateConicalGradient" opcode="36">
@@ -542,5 +554,11 @@ for licensing information.
<field type="POINTFIX" name="center" />
<field type="FIXED" name="angle" /> <!-- degrees -->
<field type="CARD32" name="num_stops" />
+ <list type="FIXED" name="stops">
+ <fieldref>num_stops</fieldref>
+ </list>
+ <list type="COLOR" name="colors">
+ <fieldref>num_stops</fieldref>
+ </list>
</request>
</xcb>
More information about the xcb-commit
mailing list