diff options
author | Benjamin Otte <otte@redhat.com> | 2010-07-08 03:21:45 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-07-08 13:58:53 +0200 |
commit | e7594aebce6007bfa2027ba2655875db6c036e73 (patch) | |
tree | cfc0e365e94a0841c2c6f73603123bcc65eb260a /src/cairo.h | |
parent | da2663a0aa1e3f0a6b2f6ae2e9952ac27dec3f5d (diff) |
doc: Fix some consistency issues that confuse gtk-doc
Diffstat (limited to 'src/cairo.h')
-rw-r--r-- | src/cairo.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/cairo.h b/src/cairo.h index 94fc11f7..3019222d 100644 --- a/src/cairo.h +++ b/src/cairo.h @@ -2603,6 +2603,18 @@ cairo_matrix_transform_point (const cairo_matrix_t *matrix, typedef struct _cairo_region cairo_region_t; +/** + * cairo_rectangle_int_t: + * @x: X coordinate of the left side of the rectangle + * @y: Y coordinate of the the top side of the rectangle + * @width: width of the rectangle + * @height: height of the rectangle + * + * A data structure for holding a rectangle with integer coordinates. + * + * Since: 1.10 + **/ + typedef struct _cairo_rectangle_int { int x, y; int width, height; @@ -2647,8 +2659,8 @@ cairo_public int cairo_region_num_rectangles (const cairo_region_t *region); cairo_public void -cairo_region_get_rectangle (const cairo_region_t *region, - int nth_rectangle, +cairo_region_get_rectangle (const cairo_region_t *region, + int nth, cairo_rectangle_int_t *rectangle); cairo_public cairo_bool_t |