From cee687a33fb46b68d39bbfa64c44f0b28e10a9ee Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 8 Mar 2007 22:19:49 -0500 Subject: [PATCH] [cairo_traps_t] Reorder struct members for clarity --- src/cairoint.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cairoint.h b/src/cairoint.h index 38c553660..125b1fb86 100755 --- a/src/cairoint.h +++ b/src/cairoint.h @@ -1222,11 +1222,11 @@ typedef struct _cairo_surface_attributes { typedef struct _cairo_traps { cairo_status_t status; - cairo_trapezoid_t *traps; - int num_traps; - int traps_size; cairo_box_t extents; + int num_traps; + int traps_size; + cairo_trapezoid_t *traps; cairo_trapezoid_t traps_embedded[1]; } cairo_traps_t;