From 3e5f87aee63f5a8d8fc8b94dbcabb5f6a1eaf850 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 19 Sep 2011 14:18:23 +0200 Subject: [PATCH] winex11: Avoid passing color shifts to copy_image_bits. --- dlls/winex11.drv/bitblt.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dlls/winex11.drv/bitblt.c b/dlls/winex11.drv/bitblt.c index baf5f89c767..486cfdc240a 100644 --- a/dlls/winex11.drv/bitblt.c +++ b/dlls/winex11.drv/bitblt.c @@ -1534,8 +1534,13 @@ static BOOL matching_color_info( PHYSDEV dev, const ColorShifts *color_shifts, c return FALSE; } +static inline BOOL is_r8g8b8( int depth, const ColorShifts *color_shifts ) +{ + return depth == 24 && color_shifts->logicalBlue.shift == 0 && color_shifts->logicalRed.shift == 16; +} + /* copy the image bits, fixing up alignment and byte swapping as necessary */ -static DWORD copy_image_bits( BITMAPINFO *info, const ColorShifts *color_shifts, XImage *image, +static DWORD copy_image_bits( BITMAPINFO *info, BOOL is_r8g8b8, XImage *image, const struct gdi_image_bits *src_bits, struct gdi_image_bits *dst_bits, struct bitblt_coords *coords, const int *mapping, unsigned int zeropad_mask ) { @@ -1563,8 +1568,7 @@ static DWORD copy_image_bits( BITMAPINFO *info, const ColorShifts *color_shifts, need_byteswap = (image->byte_order != client_byte_order); break; case 24: - need_byteswap = ((image->byte_order == LSBFirst && color_shifts->logicalBlue.shift == 16) || - (image->byte_order == MSBFirst && color_shifts->logicalBlue.shift == 0)); + need_byteswap = (image->byte_order == MSBFirst) ^ !is_r8g8b8; break; default: need_byteswap = FALSE; @@ -1737,7 +1741,7 @@ DWORD X11DRV_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info mapping = X11DRV_PALETTE_PaletteToXPixel; } - ret = copy_image_bits( info, color_shifts, image, bits, &dst_bits, src, mapping, ~0u ); + ret = copy_image_bits( info, is_r8g8b8(depth,color_shifts), image, bits, &dst_bits, src, mapping, ~0u ); if (!ret) { @@ -1940,7 +1944,7 @@ DWORD X11DRV_GetImage( PHYSDEV dev, HBITMAP hbitmap, BITMAPINFO *info, src_bits.ptr = image->data; src_bits.is_copy = TRUE; - ret = copy_image_bits( info, color_shifts, image, &src_bits, bits, src, mapping, + ret = copy_image_bits( info, is_r8g8b8(depth,color_shifts), image, &src_bits, bits, src, mapping, zeropad_masks[(width * image->bits_per_pixel) & 31] ); if (!ret && bits->ptr == image->data) -- 2.11.4.GIT