From 6b34482870fd53a9285f795f47656ac73fd706b0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Thu, 9 Jul 2009 04:04:00 -0400 Subject: [PATCH] Update the CRC value in scaling-test.c. The changes in pixman behavior justifying this are: - New clipping rules - Bug fixes in region code. In particular, when pixman_region_init_rects() is called on these two boxes: { 2, 6, 7, 6 } { 4, 1, 6, 7 } it now ignores the first one, which is empty and produces { 4, 1, 6, 7 } Previously, it would produce: { 2, 1, 7, 7 } for some reason. --- test/scaling-test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/scaling-test.c b/test/scaling-test.c index c85908d..1919d5f 100644 --- a/test/scaling-test.c +++ b/test/scaling-test.c @@ -329,7 +329,8 @@ int main(int argc, char *argv[]) if (n == 3000000) { /* predefined value for running with all the fastpath functions disabled */ /* it needs to be updated every time changes are introduced to this program! */ - if (crc == 0xC950E5BB) { + + if (crc == 0x0B633CF4) { printf("scaling test passed\n"); } else { printf("scaling test failed!\n"); -- 2.7.4