summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSiarhei Siamashka <siarhei.siamashka@gmail.com>2012-12-15 07:18:53 +0200
committerSiarhei Siamashka <siarhei.siamashka@gmail.com>2013-01-27 20:50:38 +0200
commited39992564beefe6b12f81e842caba11aff98a9c (patch)
tree990aa221ba226d6b2b6d3df2efa6ba285d8fc07a /test
parent5a78d74ccccba2aeb473f04ade44512d2f6c0613 (diff)
Use pixman_transform_point_31_16() from pixman_transform_point()
Old functions pixman_transform_point() and pixman_transform_point_3d() now become just wrappers for pixman_transform_point_31_16() and pixman_transform_point_31_16_3d(). Eventually their uses should be completely eliminated in the pixman code and replaced with their extended range counterparts. This is needed in order to be able to correctly handle any matrices and parameters that may come to pixman from the code responsible for XRender implementation.
Diffstat (limited to 'test')
-rw-r--r--test/affine-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/affine-test.c b/test/affine-test.c
index 678fbe84..2506250d 100644
--- a/test/affine-test.c
+++ b/test/affine-test.c
@@ -307,11 +307,11 @@ test_composite (int testnum,
}
#if BILINEAR_INTERPOLATION_BITS == 8
-#define CHECKSUM 0x97097336
+#define CHECKSUM 0x2CDF1F07
#elif BILINEAR_INTERPOLATION_BITS == 7
-#define CHECKSUM 0x31D2DC21
+#define CHECKSUM 0xBC00B1DF
#elif BILINEAR_INTERPOLATION_BITS == 4
-#define CHECKSUM 0x8B925154
+#define CHECKSUM 0xA227306B
#else
#define CHECKSUM 0x00000000
#endif