mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-03-05 18:10:39 +01:00
[region] Use signed ints for width and height in cairo_rectangle_int_t
This commit is contained in:
parent
26999e5aa8
commit
64e490a464
1 changed files with 1 additions and 1 deletions
|
|
@ -2355,7 +2355,7 @@ typedef struct _cairo_region cairo_region_t;
|
|||
|
||||
typedef struct _cairo_rectangle_int {
|
||||
int x, y;
|
||||
unsigned int width, height;
|
||||
int width, height;
|
||||
} cairo_rectangle_int_t;
|
||||
|
||||
typedef enum _cairo_region_overlap {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue