]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
cairo: Add fields to cairo_matrix_t binding
authorJürg Billeter <j@bitron.ch>
Wed, 29 Dec 2010 14:02:31 +0000 (15:02 +0100)
committerJürg Billeter <j@bitron.ch>
Sat, 22 Jan 2011 09:55:45 +0000 (10:55 +0100)
vapi/cairo.vapi

index 10774d52991d355e6d9d9ff73b3cc2536f779e2a..0ebc50b342f0a19a0a58ad071bb0ed5ca1dcb207 100644 (file)
@@ -584,6 +584,13 @@ namespace Cairo {
                public void multiply (Matrix a, Matrix b);
                public void transform_distance (ref double dx, ref double dy);
                public void transform_point (ref double x, ref double y);
+
+               public double xx;
+               public double yx;
+               public double xy;
+               public double yy;
+               public double x0;
+               public double y0;
        }
 
        [CCode (cname = "cairo_rectangle_t", has_type_id = false)]