diff options
author | Ben Avison <bavison@riscosopen.org> | 2015-04-08 14:20:30 +0100 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2015-04-09 12:04:55 +0300 |
commit | 9bc025f7cd6e37f5cc1a2c2799aea6850763a33f (patch) | |
tree | e9b239b5a627f53cf4456907eacee7abec119aec | |
parent | 978dd9fc6527f476fe980c764f0019a7a0bd451d (diff) |
pixman.c: Coding style
A few violations of coding style were identified in code copied from here
into affine-bench.
Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
-rw-r--r-- | pixman/pixman.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/pixman/pixman.c b/pixman/pixman.c index 9555cea..a07c577 100644 --- a/pixman/pixman.c +++ b/pixman/pixman.c @@ -325,18 +325,20 @@ _pixman_compute_composite_region32 (pixman_region32_t * region, return TRUE; } -typedef struct +typedef struct box_48_16 box_48_16_t; + +struct box_48_16 { - pixman_fixed_48_16_t x1; - pixman_fixed_48_16_t y1; - pixman_fixed_48_16_t x2; - pixman_fixed_48_16_t y2; -} box_48_16_t; + pixman_fixed_48_16_t x1; + pixman_fixed_48_16_t y1; + pixman_fixed_48_16_t x2; + pixman_fixed_48_16_t y2; +}; static pixman_bool_t -compute_transformed_extents (pixman_transform_t *transform, +compute_transformed_extents (pixman_transform_t *transform, const pixman_box32_t *extents, - box_48_16_t *transformed) + box_48_16_t *transformed) { pixman_fixed_48_16_t tx1, ty1, tx2, ty2; pixman_fixed_t x1, y1, x2, y2; |