[Pixman] [PATCH] test: List more details of the operation when running scaling-test verbosely

Ben Avison bavison at riscosopen.org
Fri Aug 21 08:06:40 PDT 2015


On Fri, 21 Aug 2015 11:34:35 +0100, Pekka Paalanen <ppaalanen at gmail.com> wrote:

> are you forgetting src_x, src_y, dst_x, dst_y? These were printed in
> the old code.

Good spot - yes, not sure how they managed to escape. Something like this
should take care of it:

+        printf ("src_x=%d, src_y=%d, ",
+                src_x, src_y);
+        if (mask_fmt != PIXMAN_null)
+        {
+            printf ("mask_x=%d, mask_y=%d, ",
+                    mask_x, mask_y);
+        }
+        printf ("dst_x=%d, dst_y=%d\n",
+                dst_x, dst_y);

Ben


More information about the Pixman mailing list