diff options
author | marha <marha@users.sourceforge.net> | 2011-03-12 14:57:48 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-03-12 14:57:48 +0000 |
commit | 77ec02adbc8f9657e7749b307d3cc86ccbd163ea (patch) | |
tree | 8b11e4e5002a05a69a7b7dfe5ce79162448f2aa2 /pixman/test/affine-test.c | |
parent | f81bb3160c5f39d8f7ad329e99865af88f02b96a (diff) | |
download | vcxsrv-77ec02adbc8f9657e7749b307d3cc86ccbd163ea.tar.gz vcxsrv-77ec02adbc8f9657e7749b307d3cc86ccbd163ea.tar.bz2 vcxsrv-77ec02adbc8f9657e7749b307d3cc86ccbd163ea.zip |
libX11 pixman mesa git update 12 Mar 2011
Diffstat (limited to 'pixman/test/affine-test.c')
-rw-r--r-- | pixman/test/affine-test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pixman/test/affine-test.c b/pixman/test/affine-test.c index 3c224d220..529ea8f63 100644 --- a/pixman/test/affine-test.c +++ b/pixman/test/affine-test.c @@ -95,8 +95,8 @@ test_composite (int testnum, dst_img = pixman_image_create_bits (
dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
- image_endian_swap (src_img, src_bpp * 8);
- image_endian_swap (dst_img, dst_bpp * 8);
+ image_endian_swap (src_img);
+ image_endian_swap (dst_img);
pixman_transform_init_identity (&transform);
@@ -251,7 +251,7 @@ test_composite (int testnum, dstbuf[i] &= 0xFFFFFF;
}
- image_endian_swap (dst_img, dst_bpp * 8);
+ image_endian_swap (dst_img);
if (verbose)
{
|