summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <ssp@redhat.com>2012-09-20 21:43:24 -0400
committerSøren Sandmann Pedersen <ssp@redhat.com>2012-09-22 23:41:19 -0400
commit58f8704664d1f8c812a85b929a50818f213a8438 (patch)
treef0517af9ae291840b29c68ed4ad95c60a0aa5ee1
parent550dfc5e7ecd5b099c1009d77c56cb91a62caeb1 (diff)
Fix bugs in pixman-image.c
In the checks for whether the transforms are rotation matrices "-1" and "1" were used instead of the correct -pixman_fixed_1 and pixman_fixed_1. Fixes test suite failure for rotate-test.
-rw-r--r--pixman/pixman-image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pixman/pixman-image.c b/pixman/pixman-image.c
index 15597bd..d9c3034 100644
--- a/pixman/pixman-image.c
+++ b/pixman/pixman-image.c
@@ -301,9 +301,9 @@ compute_image_info (pixman_image_t *image)
pixman_fixed_t m01 = image->common.transform->matrix[0][1];
pixman_fixed_t m10 = image->common.transform->matrix[1][0];
- if (m01 == -1 && m10 == 1)
+ if (m01 == -pixman_fixed_1 && m10 == pixman_fixed_1)
flags |= FAST_PATH_ROTATE_90_TRANSFORM;
- else if (m01 == 1 && m10 == -1)
+ else if (m01 == pixman_fixed_1 && m10 == -pixman_fixed_1)
flags |= FAST_PATH_ROTATE_270_TRANSFORM;
}
}