2 * X11DRV device-independent bitmaps
4 * Copyright 1993,1994 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include <X11/extensions/XShm.h>
26 # ifdef HAVE_SYS_SHM_H
29 # ifdef HAVE_SYS_IPC_H
32 #endif /* defined(HAVE_LIBXXSHM) */
42 #include "wine/debug.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(bitmap);
46 static struct list dibs_list = LIST_INIT(dibs_list);
48 static CRITICAL_SECTION dibs_cs;
49 static CRITICAL_SECTION_DEBUG dibs_cs_debug =
52 { &dibs_cs_debug.ProcessLocksList, &dibs_cs_debug.ProcessLocksList },
53 0, 0, { (DWORD_PTR)(__FILE__ ": dibs_cs") }
55 static CRITICAL_SECTION dibs_cs = { &dibs_cs_debug, -1, 0, 0, 0, 0 };
57 static PVOID dibs_handler;
59 static int ximageDepthTable[32];
61 /* This structure holds the arguments for DIB_SetImageBits() */
64 X11DRV_PDEVICE *physDev;
67 PALETTEENTRY *palentry;
89 } X11DRV_DIB_IMAGEBITS_DESCR;
94 RLE_EOL = 0, /* End of line */
95 RLE_END = 1, /* End of bitmap */
96 RLE_DELTA = 2 /* Delta */
100 static INT X11DRV_DIB_Coerce(X_PHYSBITMAP *,INT,BOOL);
101 static INT X11DRV_DIB_Lock(X_PHYSBITMAP *,INT,BOOL);
102 static void X11DRV_DIB_Unlock(X_PHYSBITMAP *,BOOL);
105 Some of the following helper functions are duplicated in
109 /***********************************************************************
110 * X11DRV_DIB_GetXImageWidthBytes
112 * Return the width of an X image in bytes
114 inline static int X11DRV_DIB_GetXImageWidthBytes( int width, int depth )
116 if (!depth || depth > 32) goto error;
118 if (!ximageDepthTable[depth-1])
120 XImage *testimage = XCreateImage( gdi_display, visual, depth,
121 ZPixmap, 0, NULL, 1, 1, 32, 20 );
124 ximageDepthTable[depth-1] = testimage->bits_per_pixel;
125 XDestroyImage( testimage );
127 else ximageDepthTable[depth-1] = -1;
129 if (ximageDepthTable[depth-1] != -1)
130 return (4 * ((width * ximageDepthTable[depth-1] + 31) / 32));
133 WARN( "(%d): Unsupported depth\n", depth );
138 /***********************************************************************
139 * X11DRV_DIB_GetDIBWidthBytes
141 * Return the width of a DIB bitmap in bytes. DIB bitmap data is 32-bit aligned.
143 static int X11DRV_DIB_GetDIBWidthBytes( int width, int depth )
149 case 1: words = (width + 31) / 32; break;
150 case 4: words = (width + 7) / 8; break;
151 case 8: words = (width + 3) / 4; break;
153 case 16: words = (width + 1) / 2; break;
154 case 24: words = (width * 3 + 3) / 4; break;
156 WARN("(%d): Unsupported depth\n", depth );
165 /***********************************************************************
166 * X11DRV_DIB_GetDIBImageBytes
168 * Return the number of bytes used to hold the image in a DIB bitmap.
170 static int X11DRV_DIB_GetDIBImageBytes( int width, int height, int depth )
172 return X11DRV_DIB_GetDIBWidthBytes( width, depth ) * abs( height );
176 /***********************************************************************
177 * X11DRV_DIB_BitmapInfoSize
179 * Return the size of the bitmap info structure including color table.
181 int X11DRV_DIB_BitmapInfoSize( const BITMAPINFO * info, WORD coloruse )
185 if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
187 const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)info;
188 colors = (core->bcBitCount <= 8) ? 1 << core->bcBitCount : 0;
189 return sizeof(BITMAPCOREHEADER) + colors *
190 ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBTRIPLE) : sizeof(WORD));
192 else /* assume BITMAPINFOHEADER */
194 colors = info->bmiHeader.biClrUsed;
195 if (!colors && (info->bmiHeader.biBitCount <= 8))
196 colors = 1 << info->bmiHeader.biBitCount;
197 return sizeof(BITMAPINFOHEADER) + colors *
198 ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBQUAD) : sizeof(WORD));
203 /***********************************************************************
204 * X11DRV_DIB_CreateXImage
208 XImage *X11DRV_DIB_CreateXImage( int width, int height, int depth )
214 width_bytes = X11DRV_DIB_GetXImageWidthBytes( width, depth );
215 image = XCreateImage( gdi_display, visual, depth, ZPixmap, 0,
216 calloc( height, width_bytes ),
217 width, height, 32, width_bytes );
223 /***********************************************************************
224 * DIB_GetBitmapInfoEx
226 * Get the info from a bitmap header.
227 * Return 1 for INFOHEADER, 0 for COREHEADER, -1 for error.
229 static int DIB_GetBitmapInfoEx( const BITMAPINFOHEADER *header, LONG *width,
230 LONG *height, WORD *planes, WORD *bpp,
231 WORD *compr, DWORD *size )
233 if (header->biSize == sizeof(BITMAPCOREHEADER))
235 const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)header;
236 *width = core->bcWidth;
237 *height = core->bcHeight;
238 *planes = core->bcPlanes;
239 *bpp = core->bcBitCount;
244 if (header->biSize >= sizeof(BITMAPINFOHEADER))
246 *width = header->biWidth;
247 *height = header->biHeight;
248 *planes = header->biPlanes;
249 *bpp = header->biBitCount;
250 *compr = header->biCompression;
251 *size = header->biSizeImage;
254 ERR("(%ld): unknown/wrong size for header\n", header->biSize );
259 /***********************************************************************
262 * Get the info from a bitmap header.
263 * Return 1 for INFOHEADER, 0 for COREHEADER, -1 for error.
265 static int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
266 LONG *height, WORD *bpp, WORD *compr )
271 return DIB_GetBitmapInfoEx( header, width, height, &planes, bpp, compr, &size);
275 static inline BOOL colour_is_brighter(RGBQUAD c1, RGBQUAD c2)
277 return (c1.rgbRed * c1.rgbRed + c1.rgbGreen * c1.rgbGreen + c1.rgbBlue * c1.rgbBlue) >
278 (c2.rgbRed * c2.rgbRed + c2.rgbGreen * c2.rgbGreen + c2.rgbBlue * c2.rgbBlue);
281 /***********************************************************************
282 * X11DRV_DIB_GenColorMap
284 * Fills the color map of a bitmap palette. Should not be called
285 * for a >8-bit deep bitmap.
287 static int *X11DRV_DIB_GenColorMap( X11DRV_PDEVICE *physDev, int *colorMapping,
288 WORD coloruse, WORD depth, BOOL quads,
289 const void *colorPtr, int start, int end )
293 if (coloruse == DIB_RGB_COLORS)
297 const RGBQUAD * rgb = (const RGBQUAD *)colorPtr;
299 if (depth == 1) /* Monochrome */
302 if(physDev && physDev->bitmap && physDev->bitmap->colorTable)
304 if(!colour_is_brighter(physDev->bitmap->colorTable[1], physDev->bitmap->colorTable[0]))
307 for (i = start; i < end; i++, rgb++)
308 colorMapping[i] = ((rgb->rgbRed + rgb->rgbGreen +
309 rgb->rgbBlue > 255*3/2 && !invert) ||
310 (rgb->rgbRed + rgb->rgbGreen +
311 rgb->rgbBlue <= 255*3/2 && invert));
314 for (i = start; i < end; i++, rgb++)
315 colorMapping[i] = X11DRV_PALETTE_ToPhysical( physDev, RGB(rgb->rgbRed,
321 const RGBTRIPLE * rgb = (const RGBTRIPLE *)colorPtr;
323 if (depth == 1) /* Monochrome */
326 if(physDev && physDev->bitmap && physDev->bitmap->colorTable)
328 if(!colour_is_brighter(physDev->bitmap->colorTable[1], physDev->bitmap->colorTable[0]))
331 for (i = start; i < end; i++, rgb++)
332 colorMapping[i] = ((rgb->rgbtRed + rgb->rgbtGreen +
333 rgb->rgbtBlue > 255*3/2 && !invert) ||
334 (rgb->rgbtRed + rgb->rgbtGreen +
335 rgb->rgbtBlue <= 255*3/2 && invert));
338 for (i = start; i < end; i++, rgb++)
339 colorMapping[i] = X11DRV_PALETTE_ToPhysical( physDev, RGB(rgb->rgbtRed,
344 else /* DIB_PAL_COLORS */
347 const WORD * index = (const WORD *)colorPtr;
349 for (i = start; i < end; i++, index++)
350 colorMapping[i] = X11DRV_PALETTE_ToPhysical( physDev, PALETTEINDEX(*index) );
352 for (i = start; i < end; i++)
353 colorMapping[i] = X11DRV_PALETTE_ToPhysical( physDev, PALETTEINDEX(i) );
360 /***********************************************************************
361 * X11DRV_DIB_BuildColorMap
363 * Build the color map from the bitmap palette. Should not be called
364 * for a >8-bit deep bitmap.
366 static int *X11DRV_DIB_BuildColorMap( X11DRV_PDEVICE *physDev, WORD coloruse, WORD depth,
367 const BITMAPINFO *info, int *nColors )
371 const void *colorPtr;
374 isInfo = info->bmiHeader.biSize != sizeof(BITMAPCOREHEADER);
378 colors = info->bmiHeader.biClrUsed;
379 if (!colors) colors = 1 << info->bmiHeader.biBitCount;
383 colors = 1 << ((const BITMAPCOREHEADER *)info)->bcBitCount;
386 colorPtr = (const BYTE*) info + (WORD) info->bmiHeader.biSize;
390 ERR("called with >256 colors!\n");
394 /* just so CopyDIBSection doesn't have to create an identity palette */
395 if (coloruse == (WORD)-1) colorPtr = NULL;
397 if (!(colorMapping = HeapAlloc(GetProcessHeap(), 0, colors * sizeof(int) )))
401 return X11DRV_DIB_GenColorMap( physDev, colorMapping, coloruse, depth,
402 isInfo, colorPtr, 0, colors);
405 /***********************************************************************
406 * X11DRV_DIB_BuildColorTable
408 * Build the dib color table. This either keeps a copy of the bmiColors array if
409 * usage is DIB_RGB_COLORS, or looks up the palette indicies if usage is
411 * Should not be called for a >8-bit deep bitmap.
413 static RGBQUAD *X11DRV_DIB_BuildColorTable( X11DRV_PDEVICE *physDev, WORD coloruse, WORD depth,
414 const BITMAPINFO *info )
419 BOOL core_info = info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER);
423 colors = 1 << ((const BITMAPCOREINFO*) info)->bmciHeader.bcBitCount;
427 colors = info->bmiHeader.biClrUsed;
428 if (!colors) colors = 1 << info->bmiHeader.biBitCount;
432 ERR("called with >256 colors!\n");
436 if (!(colorTable = HeapAlloc(GetProcessHeap(), 0, colors * sizeof(RGBQUAD) )))
439 if(coloruse == DIB_RGB_COLORS)
443 /* Convert RGBTRIPLEs to RGBQUADs */
444 for (i=0; i < colors; i++)
446 colorTable[i].rgbRed = ((const BITMAPCOREINFO*) info)->bmciColors[i].rgbtRed;
447 colorTable[i].rgbGreen = ((const BITMAPCOREINFO*) info)->bmciColors[i].rgbtGreen;
448 colorTable[i].rgbBlue = ((const BITMAPCOREINFO*) info)->bmciColors[i].rgbtBlue;
449 colorTable[i].rgbReserved = 0;
454 memcpy(colorTable, (const BYTE*) info + (WORD) info->bmiHeader.biSize, colors * sizeof(RGBQUAD));
459 HPALETTE hpal = GetCurrentObject(physDev->hdc, OBJ_PAL);
460 PALETTEENTRY * pal_ents;
461 const WORD *index = (const WORD*) ((const BYTE*) info + (WORD) info->bmiHeader.biSize);
462 int logcolors, entry;
464 logcolors = GetPaletteEntries( hpal, 0, 0, NULL );
465 pal_ents = HeapAlloc(GetProcessHeap(), 0, logcolors * sizeof(*pal_ents));
466 logcolors = GetPaletteEntries( hpal, 0, logcolors, pal_ents );
468 for(i = 0; i < colors; i++, index++)
470 entry = *index % logcolors;
471 colorTable[i].rgbRed = pal_ents[entry].peRed;
472 colorTable[i].rgbGreen = pal_ents[entry].peGreen;
473 colorTable[i].rgbBlue = pal_ents[entry].peBlue;
474 colorTable[i].rgbReserved = 0;
477 HeapFree(GetProcessHeap(), 0, pal_ents);
483 /***********************************************************************
484 * X11DRV_DIB_MapColor
486 static int X11DRV_DIB_MapColor( int *physMap, int nPhysMap, int phys, int oldcol )
490 if ((oldcol < nPhysMap) && (physMap[oldcol] == phys))
493 for (color = 0; color < nPhysMap; color++)
494 if (physMap[color] == phys)
497 WARN("Strange color %08x\n", phys);
502 /*********************************************************************
503 * X11DRV_DIB_GetNearestIndex
505 * Helper for X11DRV_DIB_GetDIBits.
506 * Returns the nearest colour table index for a given RGB.
507 * Nearest is defined by minimizing the sum of the squares.
509 static INT X11DRV_DIB_GetNearestIndex(RGBQUAD *colormap, int numColors, BYTE r, BYTE g, BYTE b)
511 INT i, best = -1, diff, bestdiff = -1;
514 for(color = colormap, i = 0; i < numColors; color++, i++) {
515 diff = (r - color->rgbRed) * (r - color->rgbRed) +
516 (g - color->rgbGreen) * (g - color->rgbGreen) +
517 (b - color->rgbBlue) * (b - color->rgbBlue);
520 if(best == -1 || diff < bestdiff) {
527 /*********************************************************************
528 * X11DRV_DIB_MaskToShift
530 * Helper for X11DRV_DIB_GetDIBits.
531 * Returns the by how many bits to shift a given color so that it is
532 * in the proper position.
534 INT X11DRV_DIB_MaskToShift(DWORD mask)
542 while ((mask&1)==0) {
549 /***********************************************************************
550 * X11DRV_DIB_CheckMask
552 * Check RGB mask if it is either 0 or matches visual's mask.
554 static inline int X11DRV_DIB_CheckMask(int red_mask, int green_mask, int blue_mask)
556 return ( red_mask == 0 && green_mask == 0 && blue_mask == 0 ) ||
557 ( red_mask == visual->red_mask && green_mask == visual->green_mask &&
558 blue_mask == visual->blue_mask );
561 /***********************************************************************
562 * X11DRV_DIB_SetImageBits_1
564 * SetDIBits for a 1-bit deep DIB.
566 static void X11DRV_DIB_SetImageBits_1( int lines, const BYTE *srcbits,
567 DWORD srcwidth, DWORD dstwidth, int left,
568 int *colors, XImage *bmpImage, DWORD linebytes)
577 srcbits = srcbits + linebytes * (lines - 1);
578 linebytes = -linebytes;
581 if ((extra = (left & 7)) != 0) {
585 srcbits += left >> 3;
586 width = min(srcwidth, dstwidth);
588 /* ==== pal 1 dib -> any bmp format ==== */
589 for (h = lines-1; h >=0; h--) {
591 /* FIXME: should avoid putting x<left pixels (minor speed issue) */
592 for (i = width/8, x = left; i > 0; i--) {
594 XPutPixel( bmpImage, x++, h, colors[ srcval >> 7] );
595 XPutPixel( bmpImage, x++, h, colors[(srcval >> 6) & 1] );
596 XPutPixel( bmpImage, x++, h, colors[(srcval >> 5) & 1] );
597 XPutPixel( bmpImage, x++, h, colors[(srcval >> 4) & 1] );
598 XPutPixel( bmpImage, x++, h, colors[(srcval >> 3) & 1] );
599 XPutPixel( bmpImage, x++, h, colors[(srcval >> 2) & 1] );
600 XPutPixel( bmpImage, x++, h, colors[(srcval >> 1) & 1] );
601 XPutPixel( bmpImage, x++, h, colors[ srcval & 1] );
607 case 7: XPutPixel(bmpImage, x++, h, colors[srcval >> 7]); srcval<<=1;
608 case 6: XPutPixel(bmpImage, x++, h, colors[srcval >> 7]); srcval<<=1;
609 case 5: XPutPixel(bmpImage, x++, h, colors[srcval >> 7]); srcval<<=1;
610 case 4: XPutPixel(bmpImage, x++, h, colors[srcval >> 7]); srcval<<=1;
611 case 3: XPutPixel(bmpImage, x++, h, colors[srcval >> 7]); srcval<<=1;
612 case 2: XPutPixel(bmpImage, x++, h, colors[srcval >> 7]); srcval<<=1;
613 case 1: XPutPixel(bmpImage, x++, h, colors[srcval >> 7]);
616 srcbits += linebytes;
620 /***********************************************************************
621 * X11DRV_DIB_GetImageBits_1
623 * GetDIBits for a 1-bit deep DIB.
625 static void X11DRV_DIB_GetImageBits_1( int lines, BYTE *dstbits,
626 DWORD dstwidth, DWORD srcwidth,
627 RGBQUAD *colors, PALETTEENTRY *srccolors,
628 XImage *bmpImage, DWORD linebytes )
631 int h, width = min(dstwidth, srcwidth);
635 dstbits = dstbits + linebytes * (lines - 1);
636 linebytes = -linebytes;
639 switch (bmpImage->depth)
643 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
645 /* ==== pal 1 or 4 bmp -> pal 1 dib ==== */
648 for (h=lines-1; h>=0; h--) {
652 for (x=0; x<width; x++) {
654 srcval=srccolors[XGetPixel(bmpImage, x, h)];
655 dstval|=(X11DRV_DIB_GetNearestIndex
659 srcval.peBlue) << (7 - (x & 7)));
668 dstbits += linebytes;
676 if (X11DRV_DIB_CheckMask(bmpImage->red_mask, bmpImage->green_mask, bmpImage->blue_mask)
678 /* ==== pal 8 bmp -> pal 1 dib ==== */
680 const BYTE* srcpixel;
683 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
685 for (h=0; h<lines; h++) {
690 for (x=0; x<width; x++) {
692 srcval=srccolors[(int)*srcpixel++];
693 dstval|=(X11DRV_DIB_GetNearestIndex
697 srcval.peBlue) << (7-(x&7)) );
706 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
707 dstbits += linebytes;
718 const WORD* srcpixel;
721 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
723 if (bmpImage->green_mask==0x03e0) {
724 if (bmpImage->red_mask==0x7c00) {
725 /* ==== rgb 555 bmp -> pal 1 dib ==== */
726 for (h=0; h<lines; h++) {
731 for (x=0; x<width; x++) {
734 dstval|=(X11DRV_DIB_GetNearestIndex
736 ((srcval >> 7) & 0xf8) | /* r */
737 ((srcval >> 12) & 0x07),
738 ((srcval >> 2) & 0xf8) | /* g */
739 ((srcval >> 7) & 0x07),
740 ((srcval << 3) & 0xf8) | /* b */
741 ((srcval >> 2) & 0x07) ) << (7-(x&7)) );
750 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
751 dstbits += linebytes;
753 } else if (bmpImage->blue_mask==0x7c00) {
754 /* ==== bgr 555 bmp -> pal 1 dib ==== */
755 for (h=0; h<lines; h++) {
760 for (x=0; x<width; x++) {
763 dstval|=(X11DRV_DIB_GetNearestIndex
765 ((srcval << 3) & 0xf8) | /* r */
766 ((srcval >> 2) & 0x07),
767 ((srcval >> 2) & 0xf8) | /* g */
768 ((srcval >> 7) & 0x07),
769 ((srcval >> 7) & 0xf8) | /* b */
770 ((srcval >> 12) & 0x07) ) << (7-(x&7)) );
779 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
780 dstbits += linebytes;
785 } else if (bmpImage->green_mask==0x07e0) {
786 if (bmpImage->red_mask==0xf800) {
787 /* ==== rgb 565 bmp -> pal 1 dib ==== */
788 for (h=0; h<lines; h++) {
793 for (x=0; x<width; x++) {
796 dstval|=(X11DRV_DIB_GetNearestIndex
798 ((srcval >> 8) & 0xf8) | /* r */
799 ((srcval >> 13) & 0x07),
800 ((srcval >> 3) & 0xfc) | /* g */
801 ((srcval >> 9) & 0x03),
802 ((srcval << 3) & 0xf8) | /* b */
803 ((srcval >> 2) & 0x07) ) << (7-(x&7)) );
812 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
813 dstbits += linebytes;
815 } else if (bmpImage->blue_mask==0xf800) {
816 /* ==== bgr 565 bmp -> pal 1 dib ==== */
817 for (h=0; h<lines; h++) {
822 for (x=0; x<width; x++) {
825 dstval|=(X11DRV_DIB_GetNearestIndex
827 ((srcval << 3) & 0xf8) | /* r */
828 ((srcval >> 2) & 0x07),
829 ((srcval >> 3) & 0xfc) | /* g */
830 ((srcval >> 9) & 0x03),
831 ((srcval >> 8) & 0xf8) | /* b */
832 ((srcval >> 13) & 0x07) ) << (7-(x&7)) );
841 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
842 dstbits += linebytes;
861 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
862 bytes_per_pixel=(bmpImage->bits_per_pixel==24?3:4);
864 if (bmpImage->green_mask!=0x00ff00 ||
865 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
867 } else if (bmpImage->blue_mask==0xff) {
868 /* ==== rgb 888 or 0888 bmp -> pal 1 dib ==== */
869 for (h=0; h<lines; h++) {
874 for (x=0; x<width; x++) {
875 dstval|=(X11DRV_DIB_GetNearestIndex
879 srcbyte[0]) << (7-(x&7)) );
880 srcbyte+=bytes_per_pixel;
889 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
890 dstbits += linebytes;
893 /* ==== bgr 888 or 0888 bmp -> pal 1 dib ==== */
894 for (h=0; h<lines; h++) {
899 for (x=0; x<width; x++) {
900 dstval|=(X11DRV_DIB_GetNearestIndex
904 srcbyte[2]) << (7-(x&7)) );
905 srcbyte+=bytes_per_pixel;
914 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
915 dstbits += linebytes;
926 unsigned long white = (1 << bmpImage->bits_per_pixel) - 1;
928 /* ==== any bmp format -> pal 1 dib ==== */
929 if ((unsigned)colors[0].rgbRed+colors[0].rgbGreen+colors[0].rgbBlue >=
930 (unsigned)colors[1].rgbRed+colors[1].rgbGreen+colors[1].rgbBlue )
933 WARN("from unknown %d bit bitmap (%lx,%lx,%lx) to 1 bit DIB, "
934 "%s color mapping\n",
935 bmpImage->bits_per_pixel, bmpImage->red_mask,
936 bmpImage->green_mask, bmpImage->blue_mask,
937 neg?"negative":"direct" );
939 for (h=lines-1; h>=0; h--) {
943 for (x=0; x<width; x++) {
944 dstval|=((XGetPixel( bmpImage, x, h) >= white) ^ neg) << (7 - (x&7));
953 dstbits += linebytes;
960 /***********************************************************************
961 * X11DRV_DIB_SetImageBits_4
963 * SetDIBits for a 4-bit deep DIB.
965 static void X11DRV_DIB_SetImageBits_4( int lines, const BYTE *srcbits,
966 DWORD srcwidth, DWORD dstwidth, int left,
967 int *colors, XImage *bmpImage, DWORD linebytes)
975 srcbits = srcbits + linebytes * (lines - 1);
976 linebytes = -linebytes;
983 srcbits += left >> 1;
984 width = min(srcwidth, dstwidth);
986 /* ==== pal 4 dib -> any bmp format ==== */
987 for (h = lines-1; h >= 0; h--) {
989 for (i = width/2, x = left; i > 0; i--) {
990 BYTE srcval=*srcbyte++;
991 XPutPixel( bmpImage, x++, h, colors[srcval >> 4] );
992 XPutPixel( bmpImage, x++, h, colors[srcval & 0x0f] );
995 XPutPixel( bmpImage, x, h, colors[*srcbyte >> 4] );
996 srcbits += linebytes;
1002 /***********************************************************************
1003 * X11DRV_DIB_GetImageBits_4
1005 * GetDIBits for a 4-bit deep DIB.
1007 static void X11DRV_DIB_GetImageBits_4( int lines, BYTE *dstbits,
1008 DWORD srcwidth, DWORD dstwidth,
1009 RGBQUAD *colors, PALETTEENTRY *srccolors,
1010 XImage *bmpImage, DWORD linebytes )
1013 int h, width = min(srcwidth, dstwidth);
1019 dstbits = dstbits + ( linebytes * (lines-1) );
1020 linebytes = -linebytes;
1025 switch (bmpImage->depth) {
1028 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
1030 /* ==== pal 1 or 4 bmp -> pal 4 dib ==== */
1033 for (h = lines-1; h >= 0; h--) {
1037 for (x = 0; x < width; x++) {
1038 PALETTEENTRY srcval;
1039 srcval=srccolors[XGetPixel(bmpImage, x, h)];
1040 dstval|=(X11DRV_DIB_GetNearestIndex
1044 srcval.peBlue) << (4-((x&1)<<2)));
1053 dstbits += linebytes;
1061 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
1063 /* ==== pal 8 bmp -> pal 4 dib ==== */
1064 const void* srcbits;
1065 const BYTE *srcpixel;
1068 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
1069 for (h=0; h<lines; h++) {
1074 for (x=0; x<width; x++) {
1075 PALETTEENTRY srcval;
1076 srcval = srccolors[(int)*srcpixel++];
1077 dstval|=(X11DRV_DIB_GetNearestIndex
1081 srcval.peBlue) << (4*(1-(x&1))) );
1090 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1091 dstbits += linebytes;
1101 const void* srcbits;
1102 const WORD* srcpixel;
1105 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
1107 if (bmpImage->green_mask==0x03e0) {
1108 if (bmpImage->red_mask==0x7c00) {
1109 /* ==== rgb 555 bmp -> pal 4 dib ==== */
1110 for (h=0; h<lines; h++) {
1115 for (x=0; x<width; x++) {
1118 dstval|=(X11DRV_DIB_GetNearestIndex
1120 ((srcval >> 7) & 0xf8) | /* r */
1121 ((srcval >> 12) & 0x07),
1122 ((srcval >> 2) & 0xf8) | /* g */
1123 ((srcval >> 7) & 0x07),
1124 ((srcval << 3) & 0xf8) | /* b */
1125 ((srcval >> 2) & 0x07) ) << ((1-(x&1))<<2) );
1134 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1135 dstbits += linebytes;
1137 } else if (bmpImage->blue_mask==0x7c00) {
1138 /* ==== bgr 555 bmp -> pal 4 dib ==== */
1139 for (h=0; h<lines; h++) {
1144 for (x=0; x<width; x++) {
1147 dstval|=(X11DRV_DIB_GetNearestIndex
1149 ((srcval << 3) & 0xf8) | /* r */
1150 ((srcval >> 2) & 0x07),
1151 ((srcval >> 2) & 0xf8) | /* g */
1152 ((srcval >> 7) & 0x07),
1153 ((srcval >> 7) & 0xf8) | /* b */
1154 ((srcval >> 12) & 0x07) ) << ((1-(x&1))<<2) );
1163 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1164 dstbits += linebytes;
1169 } else if (bmpImage->green_mask==0x07e0) {
1170 if (bmpImage->red_mask==0xf800) {
1171 /* ==== rgb 565 bmp -> pal 4 dib ==== */
1172 for (h=0; h<lines; h++) {
1177 for (x=0; x<width; x++) {
1180 dstval|=(X11DRV_DIB_GetNearestIndex
1182 ((srcval >> 8) & 0xf8) | /* r */
1183 ((srcval >> 13) & 0x07),
1184 ((srcval >> 3) & 0xfc) | /* g */
1185 ((srcval >> 9) & 0x03),
1186 ((srcval << 3) & 0xf8) | /* b */
1187 ((srcval >> 2) & 0x07) ) << ((1-(x&1))<<2) );
1196 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1197 dstbits += linebytes;
1199 } else if (bmpImage->blue_mask==0xf800) {
1200 /* ==== bgr 565 bmp -> pal 4 dib ==== */
1201 for (h=0; h<lines; h++) {
1206 for (x=0; x<width; x++) {
1209 dstval|=(X11DRV_DIB_GetNearestIndex
1211 ((srcval << 3) & 0xf8) | /* r */
1212 ((srcval >> 2) & 0x07),
1213 ((srcval >> 3) & 0xfc) | /* g */
1214 ((srcval >> 9) & 0x03),
1215 ((srcval >> 8) & 0xf8) | /* b */
1216 ((srcval >> 13) & 0x07) ) << ((1-(x&1))<<2) );
1225 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1226 dstbits += linebytes;
1238 if (bmpImage->bits_per_pixel==24) {
1239 const void* srcbits;
1240 const BYTE *srcbyte;
1243 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
1245 if (bmpImage->green_mask!=0x00ff00 ||
1246 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
1248 } else if (bmpImage->blue_mask==0xff) {
1249 /* ==== rgb 888 bmp -> pal 4 dib ==== */
1250 for (h=0; h<lines; h++) {
1253 for (x=0; x<width/2; x++) {
1254 /* Do 2 pixels at a time */
1255 *dstbyte++=(X11DRV_DIB_GetNearestIndex
1260 X11DRV_DIB_GetNearestIndex
1268 /* And the the odd pixel */
1269 *dstbyte++=(X11DRV_DIB_GetNearestIndex
1275 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1276 dstbits += linebytes;
1279 /* ==== bgr 888 bmp -> pal 4 dib ==== */
1280 for (h=0; h<lines; h++) {
1283 for (x=0; x<width/2; x++) {
1284 /* Do 2 pixels at a time */
1285 *dstbyte++=(X11DRV_DIB_GetNearestIndex
1290 X11DRV_DIB_GetNearestIndex
1298 /* And the the odd pixel */
1299 *dstbyte++=(X11DRV_DIB_GetNearestIndex
1305 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1306 dstbits += linebytes;
1315 const void* srcbits;
1316 const BYTE *srcbyte;
1319 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
1321 if (bmpImage->green_mask!=0x00ff00 ||
1322 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
1324 } else if (bmpImage->blue_mask==0xff) {
1325 /* ==== rgb 0888 bmp -> pal 4 dib ==== */
1326 for (h=0; h<lines; h++) {
1329 for (x=0; x<width/2; x++) {
1330 /* Do 2 pixels at a time */
1331 *dstbyte++=(X11DRV_DIB_GetNearestIndex
1336 X11DRV_DIB_GetNearestIndex
1344 /* And the the odd pixel */
1345 *dstbyte++=(X11DRV_DIB_GetNearestIndex
1351 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1352 dstbits += linebytes;
1355 /* ==== bgr 0888 bmp -> pal 4 dib ==== */
1356 for (h=0; h<lines; h++) {
1359 for (x=0; x<width/2; x++) {
1360 /* Do 2 pixels at a time */
1361 *dstbyte++=(X11DRV_DIB_GetNearestIndex
1366 X11DRV_DIB_GetNearestIndex
1374 /* And the the odd pixel */
1375 *dstbyte++=(X11DRV_DIB_GetNearestIndex
1381 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1382 dstbits += linebytes;
1393 /* ==== any bmp format -> pal 4 dib ==== */
1394 WARN("from unknown %d bit bitmap (%lx,%lx,%lx) to 4 bit DIB\n",
1395 bmpImage->bits_per_pixel, bmpImage->red_mask,
1396 bmpImage->green_mask, bmpImage->blue_mask );
1397 for (h=lines-1; h>=0; h--) {
1399 for (x=0; x<(width & ~1); x+=2) {
1400 *dstbyte++=(X11DRV_DIB_MapColor((int*)colors, 16, XGetPixel(bmpImage, x, h), 0) << 4) |
1401 X11DRV_DIB_MapColor((int*)colors, 16, XGetPixel(bmpImage, x+1, h), 0);
1404 *dstbyte=(X11DRV_DIB_MapColor((int *)colors, 16, XGetPixel(bmpImage, x, h), 0) << 4);
1406 dstbits += linebytes;
1413 /***********************************************************************
1414 * X11DRV_DIB_SetImageBits_RLE4
1416 * SetDIBits for a 4-bit deep compressed DIB.
1418 static void X11DRV_DIB_SetImageBits_RLE4( int lines, const BYTE *bits,
1419 DWORD srcwidth, DWORD dstwidth,
1420 int left, int *colors,
1423 unsigned int x = 0, width = min(srcwidth, dstwidth);
1424 int y = lines - 1, c, length;
1425 const BYTE *begin = bits;
1430 if (length) { /* encoded */
1433 if (x >= (left + width)) break;
1434 if( x >= left) XPutPixel(bmpImage, x, y, colors[c >> 4]);
1436 if (!length--) break;
1437 if (x >= (left + width)) break;
1438 if( x >= left) XPutPixel(bmpImage, x, y, colors[c & 0xf]);
1458 default: /* absolute */
1461 if (x >= left && x < (left + width))
1462 XPutPixel(bmpImage, x, y, colors[c >> 4]);
1464 if (!length--) break;
1465 if (x >= left && x < (left + width))
1466 XPutPixel(bmpImage, x, y, colors[c & 0xf]);
1469 if ((bits - begin) & 1)
1478 /***********************************************************************
1479 * X11DRV_DIB_SetImageBits_8
1481 * SetDIBits for an 8-bit deep DIB.
1483 static void X11DRV_DIB_SetImageBits_8( int lines, const BYTE *srcbits,
1484 DWORD srcwidth, DWORD dstwidth, int left,
1485 const int *colors, XImage *bmpImage,
1489 int h, width = min(srcwidth, dstwidth);
1490 const BYTE* srcbyte;
1496 srcbits = srcbits + linebytes * (lines-1);
1497 linebytes = -linebytes;
1502 switch (bmpImage->depth) {
1505 #if defined(__i386__) && defined(__GNUC__)
1506 /* Some X servers might have 32 bit/ 16bit deep pixel */
1507 if (lines && width && (bmpImage->bits_per_pixel == 16) &&
1508 (ImageByteOrder(gdi_display)==LSBFirst) )
1510 dstbits=(BYTE*)bmpImage->data+left*2+(lines-1)*bmpImage->bytes_per_line;
1511 /* FIXME: Does this really handle all these cases correctly? */
1512 /* ==== pal 8 dib -> rgb or bgr 555 or 565 bmp ==== */
1513 for (h = lines ; h--; ) {
1514 int _cl1,_cl2; /* temp outputs for asm below */
1515 /* Borrowed from DirectDraw */
1516 __asm__ __volatile__(
1521 " movw (%%edx,%%eax,4),%%ax\n"
1523 " xor %%eax,%%eax\n"
1525 :"=S" (srcbyte), "=D" (_cl1), "=c" (_cl2)
1530 :"eax", "cc", "memory"
1532 srcbyte = (srcbits += linebytes);
1533 dstbits -= bmpImage->bytes_per_line;
1541 #if defined(__i386__) && defined(__GNUC__)
1542 if (lines && width && (bmpImage->bits_per_pixel == 32) &&
1543 (ImageByteOrder(gdi_display)==LSBFirst) )
1545 dstbits=(BYTE*)bmpImage->data+left*4+(lines-1)*bmpImage->bytes_per_line;
1546 /* FIXME: Does this really handle both cases correctly? */
1547 /* ==== pal 8 dib -> rgb or bgr 0888 bmp ==== */
1548 for (h = lines ; h--; ) {
1549 int _cl1,_cl2; /* temp outputs for asm below */
1550 /* Borrowed from DirectDraw */
1551 __asm__ __volatile__(
1556 " movl (%%edx,%%eax,4),%%eax\n"
1558 " xor %%eax,%%eax\n"
1560 :"=S" (srcbyte), "=D" (_cl1), "=c" (_cl2)
1565 :"eax", "cc", "memory"
1567 srcbyte = (srcbits += linebytes);
1568 dstbits -= bmpImage->bytes_per_line;
1575 break; /* use slow generic case below */
1578 /* ==== pal 8 dib -> any bmp format ==== */
1579 for (h=lines-1; h>=0; h--) {
1580 for (x=left; x<width+left; x++) {
1581 XPutPixel(bmpImage, x, h, colors[*srcbyte++]);
1583 srcbyte = (srcbits += linebytes);
1587 /***********************************************************************
1588 * X11DRV_DIB_GetImageBits_8
1590 * GetDIBits for an 8-bit deep DIB.
1592 static void X11DRV_DIB_GetImageBits_8( int lines, BYTE *dstbits,
1593 DWORD srcwidth, DWORD dstwidth,
1594 RGBQUAD *colors, PALETTEENTRY *srccolors,
1595 XImage *bmpImage, DWORD linebytes )
1598 int h, width = min(srcwidth, dstwidth);
1604 dstbits = dstbits + ( linebytes * (lines-1) );
1605 linebytes = -linebytes;
1610 * This condition is true when GetImageBits has been called by
1611 * UpdateDIBSection. For now, GetNearestIndex is too slow to support
1612 * 256 colormaps, so we'll just use it for GetDIBits calls.
1613 * (In some cases, in an updateDIBSection, the returned colors are bad too)
1615 if (!srccolors) goto updatesection;
1617 switch (bmpImage->depth) {
1620 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
1623 /* ==== pal 1 bmp -> pal 8 dib ==== */
1624 /* ==== pal 4 bmp -> pal 8 dib ==== */
1625 for (h=lines-1; h>=0; h--) {
1627 for (x=0; x<width; x++) {
1628 PALETTEENTRY srcval;
1629 srcval=srccolors[XGetPixel(bmpImage, x, h)];
1630 *dstbyte++=X11DRV_DIB_GetNearestIndex(colors, 256,
1635 dstbits += linebytes;
1643 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
1645 /* ==== pal 8 bmp -> pal 8 dib ==== */
1646 const void* srcbits;
1647 const BYTE* srcpixel;
1649 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
1650 for (h=0; h<lines; h++) {
1653 for (x = 0; x < width; x++) {
1654 PALETTEENTRY srcval;
1655 srcval=srccolors[(int)*srcpixel++];
1656 *dstbyte++=X11DRV_DIB_GetNearestIndex(colors, 256,
1661 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1662 dstbits += linebytes;
1672 const void* srcbits;
1673 const WORD* srcpixel;
1676 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
1678 if (bmpImage->green_mask==0x03e0) {
1679 if (bmpImage->red_mask==0x7c00) {
1680 /* ==== rgb 555 bmp -> pal 8 dib ==== */
1681 for (h=0; h<lines; h++) {
1684 for (x=0; x<width; x++) {
1687 *dstbyte++=X11DRV_DIB_GetNearestIndex
1689 ((srcval >> 7) & 0xf8) | /* r */
1690 ((srcval >> 12) & 0x07),
1691 ((srcval >> 2) & 0xf8) | /* g */
1692 ((srcval >> 7) & 0x07),
1693 ((srcval << 3) & 0xf8) | /* b */
1694 ((srcval >> 2) & 0x07) );
1696 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1697 dstbits += linebytes;
1699 } else if (bmpImage->blue_mask==0x7c00) {
1700 /* ==== bgr 555 bmp -> pal 8 dib ==== */
1701 for (h=0; h<lines; h++) {
1704 for (x=0; x<width; x++) {
1707 *dstbyte++=X11DRV_DIB_GetNearestIndex
1709 ((srcval << 3) & 0xf8) | /* r */
1710 ((srcval >> 2) & 0x07),
1711 ((srcval >> 2) & 0xf8) | /* g */
1712 ((srcval >> 7) & 0x07),
1713 ((srcval >> 7) & 0xf8) | /* b */
1714 ((srcval >> 12) & 0x07) );
1716 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1717 dstbits += linebytes;
1722 } else if (bmpImage->green_mask==0x07e0) {
1723 if (bmpImage->red_mask==0xf800) {
1724 /* ==== rgb 565 bmp -> pal 8 dib ==== */
1725 for (h=0; h<lines; h++) {
1728 for (x=0; x<width; x++) {
1731 *dstbyte++=X11DRV_DIB_GetNearestIndex
1733 ((srcval >> 8) & 0xf8) | /* r */
1734 ((srcval >> 13) & 0x07),
1735 ((srcval >> 3) & 0xfc) | /* g */
1736 ((srcval >> 9) & 0x03),
1737 ((srcval << 3) & 0xf8) | /* b */
1738 ((srcval >> 2) & 0x07) );
1740 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1741 dstbits += linebytes;
1743 } else if (bmpImage->blue_mask==0xf800) {
1744 /* ==== bgr 565 bmp -> pal 8 dib ==== */
1745 for (h=0; h<lines; h++) {
1748 for (x=0; x<width; x++) {
1751 *dstbyte++=X11DRV_DIB_GetNearestIndex
1753 ((srcval << 3) & 0xf8) | /* r */
1754 ((srcval >> 2) & 0x07),
1755 ((srcval >> 3) & 0xfc) | /* g */
1756 ((srcval >> 9) & 0x03),
1757 ((srcval >> 8) & 0xf8) | /* b */
1758 ((srcval >> 13) & 0x07) );
1760 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1761 dstbits += linebytes;
1775 const void* srcbits;
1776 const BYTE *srcbyte;
1778 int bytes_per_pixel;
1780 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
1781 bytes_per_pixel=(bmpImage->bits_per_pixel==24?3:4);
1783 if (bmpImage->green_mask!=0x00ff00 ||
1784 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
1786 } else if (bmpImage->blue_mask==0xff) {
1787 /* ==== rgb 888 or 0888 bmp -> pal 8 dib ==== */
1788 for (h=0; h<lines; h++) {
1791 for (x=0; x<width; x++) {
1792 *dstbyte++=X11DRV_DIB_GetNearestIndex
1797 srcbyte+=bytes_per_pixel;
1799 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1800 dstbits += linebytes;
1803 /* ==== bgr 888 or 0888 bmp -> pal 8 dib ==== */
1804 for (h=0; h<lines; h++) {
1807 for (x=0; x<width; x++) {
1808 *dstbyte++=X11DRV_DIB_GetNearestIndex
1813 srcbyte+=bytes_per_pixel;
1815 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
1816 dstbits += linebytes;
1824 WARN("from unknown %d bit bitmap (%lx,%lx,%lx) to 8 bit DIB\n",
1825 bmpImage->depth, bmpImage->red_mask,
1826 bmpImage->green_mask, bmpImage->blue_mask );
1828 /* ==== any bmp format -> pal 8 dib ==== */
1829 for (h=lines-1; h>=0; h--) {
1831 for (x=0; x<width; x++) {
1832 *dstbyte=X11DRV_DIB_MapColor
1834 XGetPixel(bmpImage, x, h), *dstbyte);
1837 dstbits += linebytes;
1843 /***********************************************************************
1844 * X11DRV_DIB_SetImageBits_RLE8
1846 * SetDIBits for an 8-bit deep compressed DIB.
1848 * This function rewritten 941113 by James Youngman. WINE blew out when I
1849 * first ran it because my desktop wallpaper is a (large) RLE8 bitmap.
1851 * This was because the algorithm assumed that all RLE8 bitmaps end with the
1852 * 'End of bitmap' escape code. This code is very much laxer in what it
1853 * allows to end the expansion. Possibly too lax. See the note by
1854 * case RleDelta. BTW, MS's documentation implies that a correct RLE8
1855 * bitmap should end with RleEnd, but on the other hand, software exists
1856 * that produces ones that don't and Windows 3.1 doesn't complain a bit
1859 * (No) apologies for my English spelling. [Emacs users: c-indent-level=4].
1860 * James A. Youngman <mbcstjy@afs.man.ac.uk>
1863 static void X11DRV_DIB_SetImageBits_RLE8( int lines, const BYTE *bits,
1864 DWORD srcwidth, DWORD dstwidth,
1865 int left, int *colors,
1868 unsigned int x; /* X-position on each line. Increases. */
1869 int y; /* Line #. Starts at lines-1, decreases */
1870 const BYTE *pIn = bits; /* Pointer to current position in bits */
1871 BYTE length; /* The length pf a run */
1872 BYTE escape_code; /* See enum Rle8_EscapeCodes.*/
1875 * Note that the bitmap data is stored by Windows starting at the
1876 * bottom line of the bitmap and going upwards. Within each line,
1877 * the data is stored left-to-right. That's the reason why line
1878 * goes from lines-1 to 0. [JAY]
1888 * If the length byte is not zero (which is the escape value),
1889 * We have a run of length pixels all the same colour. The colour
1890 * index is stored next.
1892 * If the length byte is zero, we need to read the next byte to
1893 * know what to do. [JAY]
1898 * [Run-Length] Encoded mode
1900 int color = colors[*pIn++];
1901 while (length-- && x < (left + dstwidth)) {
1902 if( x >= left) XPutPixel(bmpImage, x, y, color);
1909 * Escape codes (may be an absolute sequence though)
1911 escape_code = (*pIn++);
1920 /* Not all RLE8 bitmaps end with this code. For
1921 * example, Paint Shop Pro produces some that don't.
1922 * That's (I think) what caused the previous
1923 * implementation to fail. [JAY]
1932 default: /* switch to absolute mode */
1933 length = escape_code;
1936 int color = colors[*pIn++];
1937 if (x >= (left + dstwidth))
1942 if( x >= left) XPutPixel(bmpImage, x, y, color);
1946 * If you think for a moment you'll realise that the
1947 * only time we could ever possibly read an odd
1948 * number of bytes is when there is a 0x00 (escape),
1949 * a value >0x02 (absolute mode) and then an odd-
1950 * length run. Therefore this is the only place we
1951 * need to worry about it. Everywhere else the
1952 * bytes are always read in pairs. [JAY]
1954 if (escape_code & 1) pIn++; /* Throw away the pad byte. */
1956 } /* switch (escape_code) : Escape sequence */
1962 /***********************************************************************
1963 * X11DRV_DIB_SetImageBits_16
1965 * SetDIBits for a 16-bit deep DIB.
1967 static void X11DRV_DIB_SetImageBits_16( int lines, const BYTE *srcbits,
1968 DWORD srcwidth, DWORD dstwidth, int left,
1969 X11DRV_PDEVICE *physDev, DWORD rSrc, DWORD gSrc, DWORD bSrc,
1970 XImage *bmpImage, DWORD linebytes )
1973 int h, width = min(srcwidth, dstwidth);
1974 const dib_conversions *convs = (bmpImage->byte_order == LSBFirst) ? &dib_normal : &dib_dst_byteswap;
1979 srcbits = srcbits + ( linebytes * (lines-1));
1980 linebytes = -linebytes;
1983 switch (bmpImage->depth)
1990 srcbits=srcbits+left*2;
1991 dstbits=bmpImage->data+left*2+(lines-1)*bmpImage->bytes_per_line;
1993 if (bmpImage->green_mask==0x03e0) {
1994 if (gSrc==bmpImage->green_mask) {
1995 if (rSrc==bmpImage->red_mask) {
1996 /* ==== rgb 555 dib -> rgb 555 bmp ==== */
1997 /* ==== bgr 555 dib -> bgr 555 bmp ==== */
1998 convs->Convert_5x5_asis
2001 dstbits,-bmpImage->bytes_per_line);
2002 } else if (rSrc==bmpImage->blue_mask) {
2003 /* ==== rgb 555 dib -> bgr 555 bmp ==== */
2004 /* ==== bgr 555 dib -> rgb 555 bmp ==== */
2005 convs->Convert_555_reverse
2008 dstbits,-bmpImage->bytes_per_line);
2011 if (rSrc==bmpImage->red_mask || bSrc==bmpImage->blue_mask) {
2012 /* ==== rgb 565 dib -> rgb 555 bmp ==== */
2013 /* ==== bgr 565 dib -> bgr 555 bmp ==== */
2014 convs->Convert_565_to_555_asis
2017 dstbits,-bmpImage->bytes_per_line);
2019 /* ==== rgb 565 dib -> bgr 555 bmp ==== */
2020 /* ==== bgr 565 dib -> rgb 555 bmp ==== */
2021 convs->Convert_565_to_555_reverse
2024 dstbits,-bmpImage->bytes_per_line);
2027 } else if (bmpImage->green_mask==0x07e0) {
2028 if (gSrc==bmpImage->green_mask) {
2029 if (rSrc==bmpImage->red_mask) {
2030 /* ==== rgb 565 dib -> rgb 565 bmp ==== */
2031 /* ==== bgr 565 dib -> bgr 565 bmp ==== */
2032 convs->Convert_5x5_asis
2035 dstbits,-bmpImage->bytes_per_line);
2037 /* ==== rgb 565 dib -> bgr 565 bmp ==== */
2038 /* ==== bgr 565 dib -> rgb 565 bmp ==== */
2039 convs->Convert_565_reverse
2042 dstbits,-bmpImage->bytes_per_line);
2045 if (rSrc==bmpImage->red_mask || bSrc==bmpImage->blue_mask) {
2046 /* ==== rgb 555 dib -> rgb 565 bmp ==== */
2047 /* ==== bgr 555 dib -> bgr 565 bmp ==== */
2048 convs->Convert_555_to_565_asis
2051 dstbits,-bmpImage->bytes_per_line);
2053 /* ==== rgb 555 dib -> bgr 565 bmp ==== */
2054 /* ==== bgr 555 dib -> rgb 565 bmp ==== */
2055 convs->Convert_555_to_565_reverse
2058 dstbits,-bmpImage->bytes_per_line);
2068 if (bmpImage->bits_per_pixel==24) {
2071 srcbits=srcbits+left*2;
2072 dstbits=bmpImage->data+left*3+(lines-1)*bmpImage->bytes_per_line;
2074 if (bmpImage->green_mask!=0x00ff00 ||
2075 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2077 } else if ((rSrc==0x1f && bmpImage->red_mask==0xff) ||
2078 (bSrc==0x1f && bmpImage->blue_mask==0xff)) {
2080 /* ==== rgb 555 dib -> rgb 888 bmp ==== */
2081 /* ==== bgr 555 dib -> bgr 888 bmp ==== */
2082 convs->Convert_555_to_888_asis
2085 dstbits,-bmpImage->bytes_per_line);
2087 /* ==== rgb 565 dib -> rgb 888 bmp ==== */
2088 /* ==== bgr 565 dib -> bgr 888 bmp ==== */
2089 convs->Convert_565_to_888_asis
2092 dstbits,-bmpImage->bytes_per_line);
2096 /* ==== rgb 555 dib -> bgr 888 bmp ==== */
2097 /* ==== bgr 555 dib -> rgb 888 bmp ==== */
2098 convs->Convert_555_to_888_reverse
2101 dstbits,-bmpImage->bytes_per_line);
2103 /* ==== rgb 565 dib -> bgr 888 bmp ==== */
2104 /* ==== bgr 565 dib -> rgb 888 bmp ==== */
2105 convs->Convert_565_to_888_reverse
2108 dstbits,-bmpImage->bytes_per_line);
2119 srcbits=srcbits+left*2;
2120 dstbits=bmpImage->data+left*4+(lines-1)*bmpImage->bytes_per_line;
2122 if (bmpImage->green_mask!=0x00ff00 ||
2123 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2125 } else if ((rSrc==0x1f && bmpImage->red_mask==0xff) ||
2126 (bSrc==0x1f && bmpImage->blue_mask==0xff)) {
2128 /* ==== rgb 555 dib -> rgb 0888 bmp ==== */
2129 /* ==== bgr 555 dib -> bgr 0888 bmp ==== */
2130 convs->Convert_555_to_0888_asis
2133 dstbits,-bmpImage->bytes_per_line);
2135 /* ==== rgb 565 dib -> rgb 0888 bmp ==== */
2136 /* ==== bgr 565 dib -> bgr 0888 bmp ==== */
2137 convs->Convert_565_to_0888_asis
2140 dstbits,-bmpImage->bytes_per_line);
2144 /* ==== rgb 555 dib -> bgr 0888 bmp ==== */
2145 /* ==== bgr 555 dib -> rgb 0888 bmp ==== */
2146 convs->Convert_555_to_0888_reverse
2149 dstbits,-bmpImage->bytes_per_line);
2151 /* ==== rgb 565 dib -> bgr 0888 bmp ==== */
2152 /* ==== bgr 565 dib -> rgb 0888 bmp ==== */
2153 convs->Convert_565_to_0888_reverse
2156 dstbits,-bmpImage->bytes_per_line);
2164 WARN("from 16 bit DIB (%lx,%lx,%lx) to unknown %d bit bitmap (%lx,%lx,%lx)\n",
2165 rSrc, gSrc, bSrc, bmpImage->bits_per_pixel, bmpImage->red_mask,
2166 bmpImage->green_mask, bmpImage->blue_mask );
2172 /* ==== rgb or bgr 555 or 565 dib -> pal 1, 4 or 8 ==== */
2173 const WORD* srcpixel;
2174 int rShift1,gShift1,bShift1;
2175 int rShift2,gShift2,bShift2;
2178 /* Set color scaling values */
2179 rShift1=16+X11DRV_DIB_MaskToShift(rSrc)-3;
2180 gShift1=16+X11DRV_DIB_MaskToShift(gSrc)-3;
2181 bShift1=16+X11DRV_DIB_MaskToShift(bSrc)-3;
2186 /* Green has 5 bits, like the others */
2190 /* Green has 6 bits, not 5. Compensate. */
2199 /* We could split it into four separate cases to optimize
2200 * but it is probably not worth it.
2202 for (h=lines-1; h>=0; h--) {
2203 srcpixel=(const WORD*)srcbits;
2204 for (x=left; x<width+left; x++) {
2206 BYTE red,green,blue;
2207 srcval=*srcpixel++ << 16;
2208 red= ((srcval >> rShift1) & 0xf8) |
2209 ((srcval >> rShift2) & 0x07);
2210 green=((srcval >> gShift1) & gMask1) |
2211 ((srcval >> gShift2) & gMask2);
2212 blue= ((srcval >> bShift1) & 0xf8) |
2213 ((srcval >> bShift2) & 0x07);
2214 XPutPixel(bmpImage, x, h,
2215 X11DRV_PALETTE_ToPhysical
2216 (physDev, RGB(red,green,blue)));
2218 srcbits += linebytes;
2226 /***********************************************************************
2227 * X11DRV_DIB_GetImageBits_16
2229 * GetDIBits for an 16-bit deep DIB.
2231 static void X11DRV_DIB_GetImageBits_16( int lines, BYTE *dstbits,
2232 DWORD dstwidth, DWORD srcwidth,
2233 PALETTEENTRY *srccolors,
2234 DWORD rDst, DWORD gDst, DWORD bDst,
2235 XImage *bmpImage, DWORD dibpitch )
2238 int h, width = min(srcwidth, dstwidth);
2239 const dib_conversions *convs = (bmpImage->byte_order == LSBFirst) ? &dib_normal : &dib_src_byteswap;
2241 DWORD linebytes = dibpitch;
2246 dstbits = dstbits + ( linebytes * (lines-1));
2247 linebytes = -linebytes;
2250 switch (bmpImage->depth)
2255 const char* srcbits;
2257 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
2259 if (bmpImage->green_mask==0x03e0) {
2260 if (gDst==bmpImage->green_mask) {
2261 if (rDst==bmpImage->red_mask) {
2262 /* ==== rgb 555 bmp -> rgb 555 dib ==== */
2263 /* ==== bgr 555 bmp -> bgr 555 dib ==== */
2264 convs->Convert_5x5_asis
2266 srcbits,-bmpImage->bytes_per_line,
2269 /* ==== rgb 555 bmp -> bgr 555 dib ==== */
2270 /* ==== bgr 555 bmp -> rgb 555 dib ==== */
2271 convs->Convert_555_reverse
2273 srcbits,-bmpImage->bytes_per_line,
2277 if (rDst==bmpImage->red_mask || bDst==bmpImage->blue_mask) {
2278 /* ==== rgb 555 bmp -> rgb 565 dib ==== */
2279 /* ==== bgr 555 bmp -> bgr 565 dib ==== */
2280 convs->Convert_555_to_565_asis
2282 srcbits,-bmpImage->bytes_per_line,
2285 /* ==== rgb 555 bmp -> bgr 565 dib ==== */
2286 /* ==== bgr 555 bmp -> rgb 565 dib ==== */
2287 convs->Convert_555_to_565_reverse
2289 srcbits,-bmpImage->bytes_per_line,
2293 } else if (bmpImage->green_mask==0x07e0) {
2294 if (gDst==bmpImage->green_mask) {
2295 if (rDst == bmpImage->red_mask) {
2296 /* ==== rgb 565 bmp -> rgb 565 dib ==== */
2297 /* ==== bgr 565 bmp -> bgr 565 dib ==== */
2298 convs->Convert_5x5_asis
2300 srcbits,-bmpImage->bytes_per_line,
2303 /* ==== rgb 565 bmp -> bgr 565 dib ==== */
2304 /* ==== bgr 565 bmp -> rgb 565 dib ==== */
2305 convs->Convert_565_reverse
2307 srcbits,-bmpImage->bytes_per_line,
2311 if (rDst==bmpImage->red_mask || bDst==bmpImage->blue_mask) {
2312 /* ==== rgb 565 bmp -> rgb 555 dib ==== */
2313 /* ==== bgr 565 bmp -> bgr 555 dib ==== */
2314 convs->Convert_565_to_555_asis
2316 srcbits,-bmpImage->bytes_per_line,
2319 /* ==== rgb 565 bmp -> bgr 555 dib ==== */
2320 /* ==== bgr 565 bmp -> rgb 555 dib ==== */
2321 convs->Convert_565_to_555_reverse
2323 srcbits,-bmpImage->bytes_per_line,
2334 if (bmpImage->bits_per_pixel == 24) {
2335 const char* srcbits;
2337 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
2339 if (bmpImage->green_mask!=0x00ff00 ||
2340 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2342 } else if ((rDst==0x1f && bmpImage->red_mask==0xff) ||
2343 (bDst==0x1f && bmpImage->blue_mask==0xff)) {
2345 /* ==== rgb 888 bmp -> rgb 555 dib ==== */
2346 /* ==== bgr 888 bmp -> bgr 555 dib ==== */
2347 convs->Convert_888_to_555_asis
2349 srcbits,-bmpImage->bytes_per_line,
2352 /* ==== rgb 888 bmp -> rgb 565 dib ==== */
2353 /* ==== rgb 888 bmp -> rgb 565 dib ==== */
2354 convs->Convert_888_to_565_asis
2356 srcbits,-bmpImage->bytes_per_line,
2361 /* ==== rgb 888 bmp -> bgr 555 dib ==== */
2362 /* ==== bgr 888 bmp -> rgb 555 dib ==== */
2363 convs->Convert_888_to_555_reverse
2365 srcbits,-bmpImage->bytes_per_line,
2368 /* ==== rgb 888 bmp -> bgr 565 dib ==== */
2369 /* ==== bgr 888 bmp -> rgb 565 dib ==== */
2370 convs->Convert_888_to_565_reverse
2372 srcbits,-bmpImage->bytes_per_line,
2382 const char* srcbits;
2384 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
2386 if (bmpImage->green_mask!=0x00ff00 ||
2387 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2389 } else if ((rDst==0x1f && bmpImage->red_mask==0xff) ||
2390 (bDst==0x1f && bmpImage->blue_mask==0xff)) {
2392 /* ==== rgb 0888 bmp -> rgb 555 dib ==== */
2393 /* ==== bgr 0888 bmp -> bgr 555 dib ==== */
2394 convs->Convert_0888_to_555_asis
2396 srcbits,-bmpImage->bytes_per_line,
2399 /* ==== rgb 0888 bmp -> rgb 565 dib ==== */
2400 /* ==== bgr 0888 bmp -> bgr 565 dib ==== */
2401 convs->Convert_0888_to_565_asis
2403 srcbits,-bmpImage->bytes_per_line,
2408 /* ==== rgb 0888 bmp -> bgr 555 dib ==== */
2409 /* ==== bgr 0888 bmp -> rgb 555 dib ==== */
2410 convs->Convert_0888_to_555_reverse
2412 srcbits,-bmpImage->bytes_per_line,
2415 /* ==== rgb 0888 bmp -> bgr 565 dib ==== */
2416 /* ==== bgr 0888 bmp -> rgb 565 dib ==== */
2417 convs->Convert_0888_to_565_reverse
2419 srcbits,-bmpImage->bytes_per_line,
2428 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
2430 /* ==== pal 1 or 4 bmp -> rgb or bgr 555 or 565 dib ==== */
2431 int rShift,gShift,bShift;
2434 /* Shift everything 16 bits left so that all shifts are >0,
2435 * even for BGR DIBs. Then a single >> 16 will bring everything
2438 rShift=16+X11DRV_DIB_MaskToShift(rDst)-3;
2439 gShift=16+X11DRV_DIB_MaskToShift(gDst)-3;
2440 bShift=16+X11DRV_DIB_MaskToShift(bDst)-3;
2442 /* 6 bits for the green */
2448 for (h = lines - 1; h >= 0; h--) {
2449 dstpixel=(LPWORD)dstbits;
2450 for (x = 0; x < width; x++) {
2451 PALETTEENTRY srcval;
2453 srcval=srccolors[XGetPixel(bmpImage, x, h)];
2454 dstval=((srcval.peRed << rShift) & rDst) |
2455 ((srcval.peGreen << gShift) & gDst) |
2456 ((srcval.peBlue << bShift) & bDst);
2457 *dstpixel++=dstval >> 16;
2459 dstbits += linebytes;
2467 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
2469 /* ==== pal 8 bmp -> rgb or bgr 555 or 565 dib ==== */
2470 int rShift,gShift,bShift;
2471 const BYTE* srcbits;
2472 const BYTE* srcpixel;
2475 /* Shift everything 16 bits left so that all shifts are >0,
2476 * even for BGR DIBs. Then a single >> 16 will bring everything
2479 rShift=16+X11DRV_DIB_MaskToShift(rDst)-3;
2480 gShift=16+X11DRV_DIB_MaskToShift(gDst)-3;
2481 bShift=16+X11DRV_DIB_MaskToShift(bDst)-3;
2483 /* 6 bits for the green */
2489 srcbits=(BYTE*)bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
2490 for (h=0; h<lines; h++) {
2492 dstpixel=(LPWORD)dstbits;
2493 for (x = 0; x < width; x++) {
2494 PALETTEENTRY srcval;
2496 srcval=srccolors[(int)*srcpixel++];
2497 dstval=((srcval.peRed << rShift) & rDst) |
2498 ((srcval.peGreen << gShift) & gDst) |
2499 ((srcval.peBlue << bShift) & bDst);
2500 *dstpixel++=dstval >> 16;
2502 srcbits -= bmpImage->bytes_per_line;
2503 dstbits += linebytes;
2513 /* ==== any bmp format -> rgb or bgr 555 or 565 dib ==== */
2514 int rShift,gShift,bShift;
2517 WARN("from unknown %d bit bitmap (%lx,%lx,%lx) to 16 bit DIB (%lx,%lx,%lx)\n",
2518 bmpImage->depth, bmpImage->red_mask,
2519 bmpImage->green_mask, bmpImage->blue_mask,
2522 /* Shift everything 16 bits left so that all shifts are >0,
2523 * even for BGR DIBs. Then a single >> 16 will bring everything
2526 rShift=16+X11DRV_DIB_MaskToShift(rDst)-3;
2527 gShift=16+X11DRV_DIB_MaskToShift(gDst)-3;
2528 bShift=16+X11DRV_DIB_MaskToShift(bDst)-3;
2530 /* 6 bits for the green */
2536 for (h = lines - 1; h >= 0; h--) {
2537 dstpixel=(LPWORD)dstbits;
2538 for (x = 0; x < width; x++) {
2541 srcval=X11DRV_PALETTE_ToLogical(XGetPixel(bmpImage, x, h));
2542 dstval=((GetRValue(srcval) << rShift) & rDst) |
2543 ((GetGValue(srcval) << gShift) & gDst) |
2544 ((GetBValue(srcval) << bShift) & bDst);
2545 *dstpixel++=dstval >> 16;
2547 dstbits += linebytes;
2555 /***********************************************************************
2556 * X11DRV_DIB_SetImageBits_24
2558 * SetDIBits for a 24-bit deep DIB.
2560 static void X11DRV_DIB_SetImageBits_24( int lines, const BYTE *srcbits,
2561 DWORD srcwidth, DWORD dstwidth, int left,
2562 X11DRV_PDEVICE *physDev,
2563 DWORD rSrc, DWORD gSrc, DWORD bSrc,
2564 XImage *bmpImage, DWORD linebytes )
2567 int h, width = min(srcwidth, dstwidth);
2568 const dib_conversions *convs = (bmpImage->byte_order == LSBFirst) ? &dib_normal : &dib_dst_byteswap;
2573 srcbits = srcbits + linebytes * (lines - 1);
2574 linebytes = -linebytes;
2577 switch (bmpImage->depth)
2580 if (bmpImage->bits_per_pixel==24) {
2583 srcbits=srcbits+left*3;
2584 dstbits=bmpImage->data+left*3+(lines-1)*bmpImage->bytes_per_line;
2586 if (bmpImage->green_mask!=0x00ff00 ||
2587 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2589 } else if (rSrc==bmpImage->red_mask) {
2590 /* ==== rgb 888 dib -> rgb 888 bmp ==== */
2591 /* ==== bgr 888 dib -> bgr 888 bmp ==== */
2592 convs->Convert_888_asis
2595 dstbits,-bmpImage->bytes_per_line);
2597 /* ==== rgb 888 dib -> bgr 888 bmp ==== */
2598 /* ==== bgr 888 dib -> rgb 888 bmp ==== */
2599 convs->Convert_888_reverse
2602 dstbits,-bmpImage->bytes_per_line);
2612 srcbits=srcbits+left*3;
2613 dstbits=bmpImage->data+left*4+(lines-1)*bmpImage->bytes_per_line;
2615 if (bmpImage->green_mask!=0x00ff00 ||
2616 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2618 } else if (rSrc==bmpImage->red_mask) {
2619 /* ==== rgb 888 dib -> rgb 0888 bmp ==== */
2620 /* ==== bgr 888 dib -> bgr 0888 bmp ==== */
2621 convs->Convert_888_to_0888_asis
2624 dstbits,-bmpImage->bytes_per_line);
2626 /* ==== rgb 888 dib -> bgr 0888 bmp ==== */
2627 /* ==== bgr 888 dib -> rgb 0888 bmp ==== */
2628 convs->Convert_888_to_0888_reverse
2631 dstbits,-bmpImage->bytes_per_line);
2641 srcbits=srcbits+left*3;
2642 dstbits=bmpImage->data+left*2+(lines-1)*bmpImage->bytes_per_line;
2644 if (bmpImage->green_mask==0x03e0) {
2645 if ((rSrc==0xff0000 && bmpImage->red_mask==0x7f00) ||
2646 (bSrc==0xff0000 && bmpImage->blue_mask==0x7f00)) {
2647 /* ==== rgb 888 dib -> rgb 555 bmp ==== */
2648 /* ==== bgr 888 dib -> bgr 555 bmp ==== */
2649 convs->Convert_888_to_555_asis
2652 dstbits,-bmpImage->bytes_per_line);
2653 } else if ((rSrc==0xff && bmpImage->red_mask==0x7f00) ||
2654 (bSrc==0xff && bmpImage->blue_mask==0x7f00)) {
2655 /* ==== rgb 888 dib -> bgr 555 bmp ==== */
2656 /* ==== bgr 888 dib -> rgb 555 bmp ==== */
2657 convs->Convert_888_to_555_reverse
2660 dstbits,-bmpImage->bytes_per_line);
2664 } else if (bmpImage->green_mask==0x07e0) {
2665 if ((rSrc==0xff0000 && bmpImage->red_mask==0xf800) ||
2666 (bSrc==0xff0000 && bmpImage->blue_mask==0xf800)) {
2667 /* ==== rgb 888 dib -> rgb 565 bmp ==== */
2668 /* ==== bgr 888 dib -> bgr 565 bmp ==== */
2669 convs->Convert_888_to_565_asis
2672 dstbits,-bmpImage->bytes_per_line);
2673 } else if ((rSrc==0xff && bmpImage->red_mask==0xf800) ||
2674 (bSrc==0xff && bmpImage->blue_mask==0xf800)) {
2675 /* ==== rgb 888 dib -> bgr 565 bmp ==== */
2676 /* ==== bgr 888 dib -> rgb 565 bmp ==== */
2677 convs->Convert_888_to_565_reverse
2680 dstbits,-bmpImage->bytes_per_line);
2692 WARN("from 24 bit DIB (%lx,%lx,%lx) to unknown %d bit bitmap (%lx,%lx,%lx)\n",
2693 rSrc, gSrc, bSrc, bmpImage->bits_per_pixel, bmpImage->red_mask,
2694 bmpImage->green_mask, bmpImage->blue_mask );
2700 /* ==== rgb 888 dib -> any bmp bormat ==== */
2701 const BYTE* srcbyte;
2703 /* Windows only supports one 24bpp DIB format: RGB888 */
2705 for (h = lines - 1; h >= 0; h--) {
2706 srcbyte=(const BYTE*)srcbits;
2707 for (x = left; x < width+left; x++) {
2708 XPutPixel(bmpImage, x, h,
2709 X11DRV_PALETTE_ToPhysical
2710 (physDev, RGB(srcbyte[2], srcbyte[1], srcbyte[0])));
2713 srcbits += linebytes;
2721 /***********************************************************************
2722 * X11DRV_DIB_GetImageBits_24
2724 * GetDIBits for an 24-bit deep DIB.
2726 static void X11DRV_DIB_GetImageBits_24( int lines, BYTE *dstbits,
2727 DWORD dstwidth, DWORD srcwidth,
2728 PALETTEENTRY *srccolors,
2729 DWORD rDst, DWORD gDst, DWORD bDst,
2730 XImage *bmpImage, DWORD linebytes )
2733 int h, width = min(srcwidth, dstwidth);
2734 const dib_conversions *convs = (bmpImage->byte_order == LSBFirst) ? &dib_normal : &dib_src_byteswap;
2739 dstbits = dstbits + ( linebytes * (lines-1) );
2740 linebytes = -linebytes;
2743 switch (bmpImage->depth)
2746 if (bmpImage->bits_per_pixel==24) {
2747 const char* srcbits;
2749 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
2751 if (bmpImage->green_mask!=0x00ff00 ||
2752 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2754 } else if (rDst==bmpImage->red_mask) {
2755 /* ==== rgb 888 bmp -> rgb 888 dib ==== */
2756 /* ==== bgr 888 bmp -> bgr 888 dib ==== */
2757 convs->Convert_888_asis
2759 srcbits,-bmpImage->bytes_per_line,
2762 /* ==== rgb 888 bmp -> bgr 888 dib ==== */
2763 /* ==== bgr 888 bmp -> rgb 888 dib ==== */
2764 convs->Convert_888_reverse
2766 srcbits,-bmpImage->bytes_per_line,
2775 const char* srcbits;
2777 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
2779 if (bmpImage->green_mask!=0x00ff00 ||
2780 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2782 } else if (rDst==bmpImage->red_mask) {
2783 /* ==== rgb 888 bmp -> rgb 0888 dib ==== */
2784 /* ==== bgr 888 bmp -> bgr 0888 dib ==== */
2785 convs->Convert_0888_to_888_asis
2787 srcbits,-bmpImage->bytes_per_line,
2790 /* ==== rgb 888 bmp -> bgr 0888 dib ==== */
2791 /* ==== bgr 888 bmp -> rgb 0888 dib ==== */
2792 convs->Convert_0888_to_888_reverse
2794 srcbits,-bmpImage->bytes_per_line,
2803 const char* srcbits;
2805 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
2807 if (bmpImage->green_mask==0x03e0) {
2808 if ((rDst==0xff0000 && bmpImage->red_mask==0x7f00) ||
2809 (bDst==0xff0000 && bmpImage->blue_mask==0x7f00)) {
2810 /* ==== rgb 555 bmp -> rgb 888 dib ==== */
2811 /* ==== bgr 555 bmp -> bgr 888 dib ==== */
2812 convs->Convert_555_to_888_asis
2814 srcbits,-bmpImage->bytes_per_line,
2816 } else if ((rDst==0xff && bmpImage->red_mask==0x7f00) ||
2817 (bDst==0xff && bmpImage->blue_mask==0x7f00)) {
2818 /* ==== rgb 555 bmp -> bgr 888 dib ==== */
2819 /* ==== bgr 555 bmp -> rgb 888 dib ==== */
2820 convs->Convert_555_to_888_reverse
2822 srcbits,-bmpImage->bytes_per_line,
2827 } else if (bmpImage->green_mask==0x07e0) {
2828 if ((rDst==0xff0000 && bmpImage->red_mask==0xf800) ||
2829 (bDst==0xff0000 && bmpImage->blue_mask==0xf800)) {
2830 /* ==== rgb 565 bmp -> rgb 888 dib ==== */
2831 /* ==== bgr 565 bmp -> bgr 888 dib ==== */
2832 convs->Convert_565_to_888_asis
2834 srcbits,-bmpImage->bytes_per_line,
2836 } else if ((rDst==0xff && bmpImage->red_mask==0xf800) ||
2837 (bDst==0xff && bmpImage->blue_mask==0xf800)) {
2838 /* ==== rgb 565 bmp -> bgr 888 dib ==== */
2839 /* ==== bgr 565 bmp -> rgb 888 dib ==== */
2840 convs->Convert_565_to_888_reverse
2842 srcbits,-bmpImage->bytes_per_line,
2855 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
2857 /* ==== pal 1 or 4 bmp -> rgb 888 dib ==== */
2860 /* Windows only supports one 24bpp DIB format: rgb 888 */
2861 for (h = lines - 1; h >= 0; h--) {
2863 for (x = 0; x < width; x++) {
2864 PALETTEENTRY srcval;
2865 srcval=srccolors[XGetPixel(bmpImage, x, h)];
2866 dstbyte[0]=srcval.peBlue;
2867 dstbyte[1]=srcval.peGreen;
2868 dstbyte[2]=srcval.peRed;
2871 dstbits += linebytes;
2879 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
2881 /* ==== pal 8 bmp -> rgb 888 dib ==== */
2882 const void* srcbits;
2883 const BYTE* srcpixel;
2886 /* Windows only supports one 24bpp DIB format: rgb 888 */
2887 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
2888 for (h = lines - 1; h >= 0; h--) {
2891 for (x = 0; x < width; x++ ) {
2892 PALETTEENTRY srcval;
2893 srcval=srccolors[(int)*srcpixel++];
2894 dstbyte[0]=srcval.peBlue;
2895 dstbyte[1]=srcval.peGreen;
2896 dstbyte[2]=srcval.peRed;
2899 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
2900 dstbits += linebytes;
2910 /* ==== any bmp format -> 888 dib ==== */
2913 WARN("from unknown %d bit bitmap (%lx,%lx,%lx) to 24 bit DIB (%lx,%lx,%lx)\n",
2914 bmpImage->depth, bmpImage->red_mask,
2915 bmpImage->green_mask, bmpImage->blue_mask,
2918 /* Windows only supports one 24bpp DIB format: rgb 888 */
2919 for (h = lines - 1; h >= 0; h--) {
2921 for (x = 0; x < width; x++) {
2922 COLORREF srcval=X11DRV_PALETTE_ToLogical
2923 (XGetPixel( bmpImage, x, h ));
2924 dstbyte[0]=GetBValue(srcval);
2925 dstbyte[1]=GetGValue(srcval);
2926 dstbyte[2]=GetRValue(srcval);
2929 dstbits += linebytes;
2937 /***********************************************************************
2938 * X11DRV_DIB_SetImageBits_32
2940 * SetDIBits for a 32-bit deep DIB.
2942 static void X11DRV_DIB_SetImageBits_32(int lines, const BYTE *srcbits,
2943 DWORD srcwidth, DWORD dstwidth, int left,
2944 X11DRV_PDEVICE *physDev,
2945 DWORD rSrc, DWORD gSrc, DWORD bSrc,
2951 int h, width = min(srcwidth, dstwidth);
2952 const dib_conversions *convs = (bmpImage->byte_order == LSBFirst) ? &dib_normal : &dib_dst_byteswap;
2957 srcbits = srcbits + ( linebytes * (lines-1) );
2958 linebytes = -linebytes;
2961 ptr = (const DWORD *) srcbits + left;
2963 switch (bmpImage->depth)
2966 if (bmpImage->bits_per_pixel==24) {
2969 srcbits=srcbits+left*4;
2970 dstbits=bmpImage->data+left*3+(lines-1)*bmpImage->bytes_per_line;
2972 if (rSrc==bmpImage->red_mask && gSrc==bmpImage->green_mask && bSrc==bmpImage->blue_mask) {
2973 /* ==== rgb 0888 dib -> rgb 888 bmp ==== */
2974 /* ==== bgr 0888 dib -> bgr 888 bmp ==== */
2975 convs->Convert_0888_to_888_asis
2978 dstbits,-bmpImage->bytes_per_line);
2979 } else if (bmpImage->green_mask!=0x00ff00 ||
2980 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
2982 /* the tests below assume sane bmpImage masks */
2983 } else if (rSrc==bmpImage->blue_mask && gSrc==bmpImage->green_mask && bSrc==bmpImage->red_mask) {
2984 /* ==== rgb 0888 dib -> bgr 888 bmp ==== */
2985 /* ==== bgr 0888 dib -> rgb 888 bmp ==== */
2986 convs->Convert_0888_to_888_reverse
2989 dstbits,-bmpImage->bytes_per_line);
2990 } else if (bmpImage->blue_mask==0xff) {
2991 /* ==== any 0888 dib -> rgb 888 bmp ==== */
2992 convs->Convert_any0888_to_rgb888
2996 dstbits,-bmpImage->bytes_per_line);
2998 /* ==== any 0888 dib -> bgr 888 bmp ==== */
2999 convs->Convert_any0888_to_bgr888
3003 dstbits,-bmpImage->bytes_per_line);
3013 srcbits=srcbits+left*4;
3014 dstbits=bmpImage->data+left*4+(lines-1)*bmpImage->bytes_per_line;
3016 if (gSrc==bmpImage->green_mask) {
3017 if (rSrc==bmpImage->red_mask && bSrc==bmpImage->blue_mask) {
3018 /* ==== rgb 0888 dib -> rgb 0888 bmp ==== */
3019 /* ==== bgr 0888 dib -> bgr 0888 bmp ==== */
3020 convs->Convert_0888_asis
3023 dstbits,-bmpImage->bytes_per_line);
3024 } else if (bmpImage->green_mask!=0x00ff00 ||
3025 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
3027 /* the tests below assume sane bmpImage masks */
3028 } else if (rSrc==bmpImage->blue_mask && bSrc==bmpImage->red_mask) {
3029 /* ==== rgb 0888 dib -> bgr 0888 bmp ==== */
3030 /* ==== bgr 0888 dib -> rgb 0888 bmp ==== */
3031 convs->Convert_0888_reverse
3034 dstbits,-bmpImage->bytes_per_line);
3036 /* ==== any 0888 dib -> any 0888 bmp ==== */
3037 convs->Convert_0888_any
3041 dstbits,-bmpImage->bytes_per_line,
3042 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask);
3044 } else if (bmpImage->green_mask!=0x00ff00 ||
3045 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
3047 /* the tests below assume sane bmpImage masks */
3049 /* ==== any 0888 dib -> any 0888 bmp ==== */
3050 convs->Convert_0888_any
3054 dstbits,-bmpImage->bytes_per_line,
3055 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask);
3065 srcbits=srcbits+left*4;
3066 dstbits=bmpImage->data+left*2+(lines-1)*bmpImage->bytes_per_line;
3068 if (rSrc==0xff0000 && gSrc==0x00ff00 && bSrc==0x0000ff) {
3069 if (bmpImage->green_mask==0x03e0) {
3070 if (bmpImage->red_mask==0x7f00) {
3071 /* ==== rgb 0888 dib -> rgb 555 bmp ==== */
3072 convs->Convert_0888_to_555_asis
3075 dstbits,-bmpImage->bytes_per_line);
3076 } else if (bmpImage->blue_mask==0x7f00) {
3077 /* ==== rgb 0888 dib -> bgr 555 bmp ==== */
3078 convs->Convert_0888_to_555_reverse
3081 dstbits,-bmpImage->bytes_per_line);
3085 } else if (bmpImage->green_mask==0x07e0) {
3086 if (bmpImage->red_mask==0xf800) {
3087 /* ==== rgb 0888 dib -> rgb 565 bmp ==== */
3088 convs->Convert_0888_to_565_asis
3091 dstbits,-bmpImage->bytes_per_line);
3092 } else if (bmpImage->blue_mask==0xf800) {
3093 /* ==== rgb 0888 dib -> bgr 565 bmp ==== */
3094 convs->Convert_0888_to_565_reverse
3097 dstbits,-bmpImage->bytes_per_line);
3104 } else if (rSrc==0x0000ff && gSrc==0x00ff00 && bSrc==0xff0000) {
3105 if (bmpImage->green_mask==0x03e0) {
3106 if (bmpImage->blue_mask==0x7f00) {
3107 /* ==== bgr 0888 dib -> bgr 555 bmp ==== */
3108 convs->Convert_0888_to_555_asis
3111 dstbits,-bmpImage->bytes_per_line);
3112 } else if (bmpImage->red_mask==0x7f00) {
3113 /* ==== bgr 0888 dib -> rgb 555 bmp ==== */
3114 convs->Convert_0888_to_555_reverse
3117 dstbits,-bmpImage->bytes_per_line);
3121 } else if (bmpImage->green_mask==0x07e0) {
3122 if (bmpImage->blue_mask==0xf800) {
3123 /* ==== bgr 0888 dib -> bgr 565 bmp ==== */
3124 convs->Convert_0888_to_565_asis
3127 dstbits,-bmpImage->bytes_per_line);
3128 } else if (bmpImage->red_mask==0xf800) {
3129 /* ==== bgr 0888 dib -> rgb 565 bmp ==== */
3130 convs->Convert_0888_to_565_reverse
3133 dstbits,-bmpImage->bytes_per_line);
3141 if (bmpImage->green_mask==0x03e0 &&
3142 (bmpImage->red_mask==0x7f00 ||
3143 bmpImage->blue_mask==0x7f00)) {
3144 /* ==== any 0888 dib -> rgb or bgr 555 bmp ==== */
3145 convs->Convert_any0888_to_5x5
3149 dstbits,-bmpImage->bytes_per_line,
3150 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask);
3151 } else if (bmpImage->green_mask==0x07e0 &&
3152 (bmpImage->red_mask==0xf800 ||
3153 bmpImage->blue_mask==0xf800)) {
3154 /* ==== any 0888 dib -> rgb or bgr 565 bmp ==== */
3155 convs->Convert_any0888_to_5x5
3159 dstbits,-bmpImage->bytes_per_line,
3160 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask);
3170 WARN("from 32 bit DIB (%lx,%lx,%lx) to unknown %d bit bitmap (%lx,%lx,%lx)\n",
3171 rSrc, gSrc, bSrc, bmpImage->bits_per_pixel, bmpImage->red_mask,
3172 bmpImage->green_mask, bmpImage->blue_mask );
3178 /* ==== any 0888 dib -> pal 1, 4 or 8 bmp ==== */
3179 const DWORD* srcpixel;
3180 int rShift,gShift,bShift;
3182 rShift=X11DRV_DIB_MaskToShift(rSrc);
3183 gShift=X11DRV_DIB_MaskToShift(gSrc);
3184 bShift=X11DRV_DIB_MaskToShift(bSrc);
3186 for (h = lines - 1; h >= 0; h--) {
3187 srcpixel=(const DWORD*)srcbits;
3188 for (x = left; x < width+left; x++) {
3190 BYTE red,green,blue;
3191 srcvalue=*srcpixel++;
3192 red= (srcvalue >> rShift) & 0xff;
3193 green=(srcvalue >> gShift) & 0xff;
3194 blue= (srcvalue >> bShift) & 0xff;
3195 XPutPixel(bmpImage, x, h, X11DRV_PALETTE_ToPhysical
3196 (physDev, RGB(red,green,blue)));
3198 srcbits += linebytes;
3206 /***********************************************************************
3207 * X11DRV_DIB_GetImageBits_32
3209 * GetDIBits for an 32-bit deep DIB.
3211 static void X11DRV_DIB_GetImageBits_32( int lines, BYTE *dstbits,
3212 DWORD dstwidth, DWORD srcwidth,
3213 PALETTEENTRY *srccolors,
3214 DWORD rDst, DWORD gDst, DWORD bDst,
3215 XImage *bmpImage, DWORD linebytes )
3218 int h, width = min(srcwidth, dstwidth);
3220 const dib_conversions *convs = (bmpImage->byte_order == LSBFirst) ? &dib_normal : &dib_src_byteswap;
3225 dstbits = dstbits + ( linebytes * (lines-1) );
3226 linebytes = -linebytes;
3231 switch (bmpImage->depth)
3234 if (bmpImage->bits_per_pixel==24) {
3235 const void* srcbits;
3237 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
3239 if (rDst==bmpImage->red_mask && gDst==bmpImage->green_mask && bDst==bmpImage->blue_mask) {
3240 /* ==== rgb 888 bmp -> rgb 0888 dib ==== */
3241 /* ==== bgr 888 bmp -> bgr 0888 dib ==== */
3242 convs->Convert_888_to_0888_asis
3244 srcbits,-bmpImage->bytes_per_line,
3246 } else if (bmpImage->green_mask!=0x00ff00 ||
3247 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
3249 /* the tests below assume sane bmpImage masks */
3250 } else if (rDst==bmpImage->blue_mask && gDst==bmpImage->green_mask && bDst==bmpImage->red_mask) {
3251 /* ==== rgb 888 bmp -> bgr 0888 dib ==== */
3252 /* ==== bgr 888 bmp -> rgb 0888 dib ==== */
3253 convs->Convert_888_to_0888_reverse
3255 srcbits,-bmpImage->bytes_per_line,
3257 } else if (bmpImage->blue_mask==0xff) {
3258 /* ==== rgb 888 bmp -> any 0888 dib ==== */
3259 convs->Convert_rgb888_to_any0888
3261 srcbits,-bmpImage->bytes_per_line,
3265 /* ==== bgr 888 bmp -> any 0888 dib ==== */
3266 convs->Convert_bgr888_to_any0888
3268 srcbits,-bmpImage->bytes_per_line,
3278 const char* srcbits;
3280 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
3282 if (gDst==bmpImage->green_mask) {
3283 if (rDst==bmpImage->red_mask && bDst==bmpImage->blue_mask) {
3284 /* ==== rgb 0888 bmp -> rgb 0888 dib ==== */
3285 /* ==== bgr 0888 bmp -> bgr 0888 dib ==== */
3286 convs->Convert_0888_asis
3288 srcbits,-bmpImage->bytes_per_line,
3290 } else if (bmpImage->green_mask!=0x00ff00 ||
3291 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
3293 /* the tests below assume sane bmpImage masks */
3294 } else if (rDst==bmpImage->blue_mask && bDst==bmpImage->red_mask) {
3295 /* ==== rgb 0888 bmp -> bgr 0888 dib ==== */
3296 /* ==== bgr 0888 bmp -> rgb 0888 dib ==== */
3297 convs->Convert_0888_reverse
3299 srcbits,-bmpImage->bytes_per_line,
3302 /* ==== any 0888 bmp -> any 0888 dib ==== */
3303 convs->Convert_0888_any
3305 srcbits,-bmpImage->bytes_per_line,
3306 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask,
3310 } else if (bmpImage->green_mask!=0x00ff00 ||
3311 (bmpImage->red_mask|bmpImage->blue_mask)!=0xff00ff) {
3313 /* the tests below assume sane bmpImage masks */
3315 /* ==== any 0888 bmp -> any 0888 dib ==== */
3316 convs->Convert_0888_any
3318 srcbits,-bmpImage->bytes_per_line,
3319 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask,
3329 const char* srcbits;
3331 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
3333 if (rDst==0xff0000 && gDst==0x00ff00 && bDst==0x0000ff) {
3334 if (bmpImage->green_mask==0x03e0) {
3335 if (bmpImage->red_mask==0x7f00) {
3336 /* ==== rgb 555 bmp -> rgb 0888 dib ==== */
3337 convs->Convert_555_to_0888_asis
3339 srcbits,-bmpImage->bytes_per_line,
3341 } else if (bmpImage->blue_mask==0x7f00) {
3342 /* ==== bgr 555 bmp -> rgb 0888 dib ==== */
3343 convs->Convert_555_to_0888_reverse
3345 srcbits,-bmpImage->bytes_per_line,
3350 } else if (bmpImage->green_mask==0x07e0) {
3351 if (bmpImage->red_mask==0xf800) {
3352 /* ==== rgb 565 bmp -> rgb 0888 dib ==== */
3353 convs->Convert_565_to_0888_asis
3355 srcbits,-bmpImage->bytes_per_line,
3357 } else if (bmpImage->blue_mask==0xf800) {
3358 /* ==== bgr 565 bmp -> rgb 0888 dib ==== */
3359 convs->Convert_565_to_0888_reverse
3361 srcbits,-bmpImage->bytes_per_line,
3369 } else if (rDst==0x0000ff && gDst==0x00ff00 && bDst==0xff0000) {
3370 if (bmpImage->green_mask==0x03e0) {
3371 if (bmpImage->blue_mask==0x7f00) {
3372 /* ==== bgr 555 bmp -> bgr 0888 dib ==== */
3373 convs->Convert_555_to_0888_asis
3375 srcbits,-bmpImage->bytes_per_line,
3377 } else if (bmpImage->red_mask==0x7f00) {
3378 /* ==== rgb 555 bmp -> bgr 0888 dib ==== */
3379 convs->Convert_555_to_0888_reverse
3381 srcbits,-bmpImage->bytes_per_line,
3386 } else if (bmpImage->green_mask==0x07e0) {
3387 if (bmpImage->blue_mask==0xf800) {
3388 /* ==== bgr 565 bmp -> bgr 0888 dib ==== */
3389 convs->Convert_565_to_0888_asis
3391 srcbits,-bmpImage->bytes_per_line,
3393 } else if (bmpImage->red_mask==0xf800) {
3394 /* ==== rgb 565 bmp -> bgr 0888 dib ==== */
3395 convs->Convert_565_to_0888_reverse
3397 srcbits,-bmpImage->bytes_per_line,
3406 if (bmpImage->green_mask==0x03e0 &&
3407 (bmpImage->red_mask==0x7f00 ||
3408 bmpImage->blue_mask==0x7f00)) {
3409 /* ==== rgb or bgr 555 bmp -> any 0888 dib ==== */
3410 convs->Convert_5x5_to_any0888
3412 srcbits,-bmpImage->bytes_per_line,
3413 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask,
3416 } else if (bmpImage->green_mask==0x07e0 &&
3417 (bmpImage->red_mask==0xf800 ||
3418 bmpImage->blue_mask==0xf800)) {
3419 /* ==== rgb or bgr 565 bmp -> any 0888 dib ==== */
3420 convs->Convert_5x5_to_any0888
3422 srcbits,-bmpImage->bytes_per_line,
3423 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask,
3435 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
3437 /* ==== pal 1 or 4 bmp -> any 0888 dib ==== */
3438 int rShift,gShift,bShift;
3441 rShift=X11DRV_DIB_MaskToShift(rDst);
3442 gShift=X11DRV_DIB_MaskToShift(gDst);
3443 bShift=X11DRV_DIB_MaskToShift(bDst);
3444 for (h = lines - 1; h >= 0; h--) {
3445 dstpixel=(DWORD*)dstbits;
3446 for (x = 0; x < width; x++) {
3447 PALETTEENTRY srcval;
3448 srcval = srccolors[XGetPixel(bmpImage, x, h)];
3449 *dstpixel++=(srcval.peRed << rShift) |
3450 (srcval.peGreen << gShift) |
3451 (srcval.peBlue << bShift);
3453 dstbits += linebytes;
3461 if (X11DRV_DIB_CheckMask(bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask)
3463 /* ==== pal 8 bmp -> any 0888 dib ==== */
3464 int rShift,gShift,bShift;
3465 const void* srcbits;
3466 const BYTE* srcpixel;
3469 rShift=X11DRV_DIB_MaskToShift(rDst);
3470 gShift=X11DRV_DIB_MaskToShift(gDst);
3471 bShift=X11DRV_DIB_MaskToShift(bDst);
3472 srcbits=bmpImage->data+(lines-1)*bmpImage->bytes_per_line;
3473 for (h = lines - 1; h >= 0; h--) {
3475 dstpixel=(DWORD*)dstbits;
3476 for (x = 0; x < width; x++) {
3477 PALETTEENTRY srcval;
3478 srcval=srccolors[(int)*srcpixel++];
3479 *dstpixel++=(srcval.peRed << rShift) |
3480 (srcval.peGreen << gShift) |
3481 (srcval.peBlue << bShift);
3483 srcbits = (const char*)srcbits - bmpImage->bytes_per_line;
3484 dstbits += linebytes;
3494 /* ==== any bmp format -> any 0888 dib ==== */
3495 int rShift,gShift,bShift;
3498 WARN("from unknown %d bit bitmap (%lx,%lx,%lx) to 32 bit DIB (%lx,%lx,%lx)\n",
3499 bmpImage->depth, bmpImage->red_mask,
3500 bmpImage->green_mask, bmpImage->blue_mask,
3503 rShift=X11DRV_DIB_MaskToShift(rDst);
3504 gShift=X11DRV_DIB_MaskToShift(gDst);
3505 bShift=X11DRV_DIB_MaskToShift(bDst);
3506 for (h = lines - 1; h >= 0; h--) {
3507 dstpixel=(DWORD*)dstbits;
3508 for (x = 0; x < width; x++) {
3510 srcval=X11DRV_PALETTE_ToLogical(XGetPixel(bmpImage, x, h));
3511 *dstpixel++=(GetRValue(srcval) << rShift) |
3512 (GetGValue(srcval) << gShift) |
3513 (GetBValue(srcval) << bShift);
3515 dstbits += linebytes;
3522 static int XGetSubImageErrorHandler(Display *dpy, XErrorEvent *event, void *arg)
3524 return (event->request_code == X_GetImage && event->error_code == BadMatch);
3527 /***********************************************************************
3528 * X11DRV_DIB_SetImageBits_GetSubImage
3530 * Helper for X11DRV_DIB_SetImageBits
3532 static void X11DRV_DIB_SetImageBits_GetSubImage(
3533 const X11DRV_DIB_IMAGEBITS_DESCR *descr, XImage *bmpImage)
3535 /* compressed bitmaps may contain gaps in them. So make a copy
3536 * of the existing pixels first */
3539 SetRect( &bmprc, descr->xDest, descr->yDest,
3540 descr->xDest + descr->width , descr->yDest + descr->height );
3541 GetRgnBox( descr->physDev->region, &rc );
3542 /* convert from dc to drawable origin */
3543 OffsetRect( &rc, descr->physDev->org.x, descr->physDev->org.y);
3544 /* clip visible rect with bitmap */
3545 if( IntersectRect( &rc, &rc, &bmprc))
3547 X11DRV_expect_error( gdi_display, XGetSubImageErrorHandler, NULL );
3548 XGetSubImage( gdi_display, descr->drawable, rc.left, rc.top,
3549 rc.right - rc.left, rc.bottom - rc.top, AllPlanes,
3551 descr->xSrc + rc.left - bmprc.left,
3552 descr->ySrc + rc.top - bmprc.top);
3553 X11DRV_check_error();
3557 /***********************************************************************
3558 * X11DRV_DIB_SetImageBits
3560 * Transfer the bits to an X image.
3561 * Helper function for SetDIBits() and SetDIBitsToDevice().
3563 static int X11DRV_DIB_SetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
3565 int lines = descr->lines >= 0 ? descr->lines : -descr->lines;
3570 bmpImage = descr->image;
3572 bmpImage = XCreateImage( gdi_display, visual, descr->depth, ZPixmap, 0, NULL,
3573 descr->infoWidth, lines, 32, 0 );
3574 bmpImage->data = calloc( lines, bmpImage->bytes_per_line );
3575 if(bmpImage->data == NULL) {
3576 ERR("Out of memory!\n");
3577 XDestroyImage( bmpImage );
3578 wine_tsx11_unlock();
3583 TRACE("Dib: depth=%d r=%lx g=%lx b=%lx\n",
3584 descr->infoBpp,descr->rMask,descr->gMask,descr->bMask);
3585 TRACE("Bmp: depth=%d/%d r=%lx g=%lx b=%lx\n",
3586 bmpImage->depth,bmpImage->bits_per_pixel,
3587 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask);
3589 /* Transfer the pixels */
3590 switch(descr->infoBpp)
3593 X11DRV_DIB_SetImageBits_1( descr->lines, descr->bits, descr->infoWidth,
3594 descr->width, descr->xSrc, (int *)(descr->colorMap),
3595 bmpImage, descr->dibpitch );
3598 if (descr->compression) {
3599 X11DRV_DIB_SetImageBits_GetSubImage( descr, bmpImage);
3600 X11DRV_DIB_SetImageBits_RLE4( descr->lines, descr->bits,
3601 descr->infoWidth, descr->width,
3602 descr->xSrc, (int *)(descr->colorMap),
3605 X11DRV_DIB_SetImageBits_4( descr->lines, descr->bits,
3606 descr->infoWidth, descr->width,
3607 descr->xSrc, (int*)(descr->colorMap),
3608 bmpImage, descr->dibpitch );
3611 if (descr->compression) {
3612 X11DRV_DIB_SetImageBits_GetSubImage( descr, bmpImage);
3613 X11DRV_DIB_SetImageBits_RLE8( descr->lines, descr->bits,
3614 descr->infoWidth, descr->width,
3615 descr->xSrc, (int *)(descr->colorMap),
3618 X11DRV_DIB_SetImageBits_8( descr->lines, descr->bits,
3619 descr->infoWidth, descr->width,
3620 descr->xSrc, (int *)(descr->colorMap),
3621 bmpImage, descr->dibpitch );
3625 X11DRV_DIB_SetImageBits_16( descr->lines, descr->bits,
3626 descr->infoWidth, descr->width,
3627 descr->xSrc, descr->physDev,
3628 descr->rMask, descr->gMask, descr->bMask,
3629 bmpImage, descr->dibpitch);
3632 X11DRV_DIB_SetImageBits_24( descr->lines, descr->bits,
3633 descr->infoWidth, descr->width,
3634 descr->xSrc, descr->physDev,
3635 descr->rMask, descr->gMask, descr->bMask,
3636 bmpImage, descr->dibpitch);
3639 X11DRV_DIB_SetImageBits_32( descr->lines, descr->bits,
3640 descr->infoWidth, descr->width,
3641 descr->xSrc, descr->physDev,
3642 descr->rMask, descr->gMask, descr->bMask,
3643 bmpImage, descr->dibpitch);
3646 WARN("(%d): Invalid depth\n", descr->infoBpp );
3650 TRACE("XPutImage(%ld,%p,%p,%d,%d,%d,%d,%d,%d)\n",
3651 descr->drawable, descr->gc, bmpImage,
3652 descr->xSrc, descr->ySrc, descr->xDest, descr->yDest,
3653 descr->width, descr->height);
3654 #ifdef HAVE_LIBXXSHM
3655 if (descr->image && descr->useShm)
3657 XShmPutImage( gdi_display, descr->drawable, descr->gc, bmpImage,
3658 descr->xSrc, descr->ySrc, descr->xDest, descr->yDest,
3659 descr->width, descr->height, FALSE );
3660 XSync( gdi_display, 0 );
3664 XPutImage( gdi_display, descr->drawable, descr->gc, bmpImage,
3665 descr->xSrc, descr->ySrc, descr->xDest, descr->yDest,
3666 descr->width, descr->height );
3668 if (!descr->image) XDestroyImage( bmpImage );
3669 wine_tsx11_unlock();
3673 /***********************************************************************
3674 * X11DRV_DIB_GetImageBits
3676 * Transfer the bits from an X image.
3678 static int X11DRV_DIB_GetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
3680 int lines = descr->lines >= 0 ? descr->lines : -descr->lines;
3685 bmpImage = descr->image;
3687 bmpImage = XCreateImage( gdi_display, visual, descr->depth, ZPixmap, 0, NULL,
3688 descr->infoWidth, lines, 32, 0 );
3689 bmpImage->data = calloc( lines, bmpImage->bytes_per_line );
3690 if(bmpImage->data == NULL) {
3691 ERR("Out of memory!\n");
3692 XDestroyImage( bmpImage );
3693 wine_tsx11_unlock();
3698 #ifdef HAVE_LIBXXSHM
3699 if (descr->image && descr->useShm)
3701 int saveRed, saveGreen, saveBlue;
3703 TRACE("XShmGetImage(%p, %ld, %p, %d, %d, %ld)\n",
3704 gdi_display, descr->drawable, bmpImage,
3705 descr->xSrc, descr->ySrc, AllPlanes);
3707 /* We must save and restore the bmpImage's masks in order
3708 * to preserve them across the call to XShmGetImage, which
3709 * decides to eleminate them since it doesn't happen to know
3710 * what the format of the image is supposed to be, even though
3712 saveRed = bmpImage->red_mask;
3713 saveBlue= bmpImage->blue_mask;
3714 saveGreen = bmpImage->green_mask;
3716 XShmGetImage( gdi_display, descr->drawable, bmpImage,
3717 descr->xSrc, descr->ySrc, AllPlanes);
3719 bmpImage->red_mask = saveRed;
3720 bmpImage->blue_mask = saveBlue;
3721 bmpImage->green_mask = saveGreen;
3724 #endif /* HAVE_LIBXXSHM */
3726 TRACE("XGetSubImage(%p,%ld,%d,%d,%d,%d,%ld,%d,%p,%d,%d)\n",
3727 gdi_display, descr->drawable, descr->xSrc, descr->ySrc, descr->width,
3728 lines, AllPlanes, ZPixmap, bmpImage, descr->xDest, descr->yDest);
3729 XGetSubImage( gdi_display, descr->drawable, descr->xSrc, descr->ySrc,
3730 descr->width, lines, AllPlanes, ZPixmap,
3731 bmpImage, descr->xDest, descr->yDest );
3734 TRACE("Dib: depth=%2d r=%lx g=%lx b=%lx\n",
3735 descr->infoBpp,descr->rMask,descr->gMask,descr->bMask);
3736 TRACE("Bmp: depth=%2d/%2d r=%lx g=%lx b=%lx\n",
3737 bmpImage->depth,bmpImage->bits_per_pixel,
3738 bmpImage->red_mask,bmpImage->green_mask,bmpImage->blue_mask);
3739 /* Transfer the pixels */
3740 switch(descr->infoBpp)
3743 X11DRV_DIB_GetImageBits_1( descr->lines,(LPVOID)descr->bits,
3744 descr->infoWidth, descr->width,
3745 descr->colorMap, descr->palentry,
3746 bmpImage, descr->dibpitch );
3750 if (descr->compression) {
3751 FIXME("Compression not yet supported!\n");
3752 if(descr->sizeImage < X11DRV_DIB_GetDIBWidthBytes( descr->infoWidth, 4 ) * abs(descr->lines))
3755 X11DRV_DIB_GetImageBits_4( descr->lines,(LPVOID)descr->bits,
3756 descr->infoWidth, descr->width,
3757 descr->colorMap, descr->palentry,
3758 bmpImage, descr->dibpitch );
3761 if (descr->compression) {
3762 FIXME("Compression not yet supported!\n");
3763 if(descr->sizeImage < X11DRV_DIB_GetDIBWidthBytes( descr->infoWidth, 8 ) * abs(descr->lines))
3766 X11DRV_DIB_GetImageBits_8( descr->lines, (LPVOID)descr->bits,
3767 descr->infoWidth, descr->width,
3768 descr->colorMap, descr->palentry,
3769 bmpImage, descr->dibpitch );
3773 X11DRV_DIB_GetImageBits_16( descr->lines, (LPVOID)descr->bits,
3774 descr->infoWidth,descr->width,
3776 descr->rMask, descr->gMask, descr->bMask,
3777 bmpImage, descr->dibpitch );
3781 X11DRV_DIB_GetImageBits_24( descr->lines, (LPVOID)descr->bits,
3782 descr->infoWidth,descr->width,
3784 descr->rMask, descr->gMask, descr->bMask,
3785 bmpImage, descr->dibpitch);
3789 X11DRV_DIB_GetImageBits_32( descr->lines, (LPVOID)descr->bits,
3790 descr->infoWidth, descr->width,
3792 descr->rMask, descr->gMask, descr->bMask,
3793 bmpImage, descr->dibpitch);
3797 WARN("(%d): Invalid depth\n", descr->infoBpp );
3801 if (!descr->image) XDestroyImage( bmpImage );
3802 wine_tsx11_unlock();
3806 /*************************************************************************
3807 * X11DRV_SetDIBitsToDevice
3810 INT X11DRV_SetDIBitsToDevice( X11DRV_PDEVICE *physDev, INT xDest, INT yDest, DWORD cx,
3811 DWORD cy, INT xSrc, INT ySrc,
3812 UINT startscan, UINT lines, LPCVOID bits,
3813 const BITMAPINFO *info, UINT coloruse )
3815 X11DRV_DIB_IMAGEBITS_DESCR descr;
3821 if (DIB_GetBitmapInfo( &info->bmiHeader, &width, &height,
3822 &descr.infoBpp, &descr.compression ) == -1)
3825 top_down = (height < 0);
3826 if (top_down) height = -height;
3830 LPtoDP(physDev->hdc, &pt, 1);
3832 if (!lines || (startscan >= height)) return 0;
3833 if (!top_down && startscan + lines > height) lines = height - startscan;
3835 /* make xSrc,ySrc point to the upper-left corner, not the lower-left one,
3836 * and clamp all values to fit inside [startscan,startscan+lines]
3838 if (ySrc + cy <= startscan + lines)
3840 UINT y = startscan + lines - (ySrc + cy);
3841 if (ySrc < startscan) cy -= (startscan - ySrc);
3844 /* avoid getting unnecessary lines */
3846 if (y >= lines) return 0;
3851 if (y >= lines) return lines;
3852 ySrc = y; /* need to get all lines in top down mode */
3857 if (ySrc >= startscan + lines) return lines;
3858 pt.y += ySrc + cy - (startscan + lines);
3859 cy = startscan + lines - ySrc;
3861 if (cy > lines) cy = lines;
3863 if (xSrc >= width) return lines;
3864 if (xSrc + cx >= width) cx = width - xSrc;
3865 if (!cx || !cy) return lines;
3867 /* Update the pixmap from the DIB section */
3868 X11DRV_LockDIBSection(physDev, DIB_Status_GdiMod, FALSE);
3870 X11DRV_SetupGCForText( physDev ); /* To have the correct colors */
3872 XSetFunction(gdi_display, physDev->gc, X11DRV_XROPfunction[GetROP2(physDev->hdc) - 1]);
3873 wine_tsx11_unlock();
3875 switch (descr.infoBpp)
3880 descr.colorMap = (RGBQUAD *)X11DRV_DIB_BuildColorMap(
3882 physDev->depth, info, &descr.nColorMap );
3883 if (!descr.colorMap) return 0;
3884 descr.rMask = descr.gMask = descr.bMask = 0;
3888 descr.rMask = (descr.compression == BI_BITFIELDS) ? *(const DWORD *)info->bmiColors : 0x7c00;
3889 descr.gMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 1) : 0x03e0;
3890 descr.bMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 2) : 0x001f;
3896 descr.rMask = (descr.compression == BI_BITFIELDS) ? *(const DWORD *)info->bmiColors : 0xff0000;
3897 descr.gMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 1) : 0x00ff00;
3898 descr.bMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 2) : 0x0000ff;
3903 descr.physDev = physDev;
3906 descr.palentry = NULL;
3907 descr.lines = top_down ? -lines : lines;
3908 descr.infoWidth = width;
3909 descr.depth = physDev->depth;
3910 descr.drawable = physDev->drawable;
3911 descr.gc = physDev->gc;
3914 descr.xDest = physDev->org.x + pt.x;
3915 descr.yDest = physDev->org.y + pt.y;
3918 descr.useShm = FALSE;
3919 descr.dibpitch = ((width * descr.infoBpp + 31) &~31) / 8;
3921 result = X11DRV_DIB_SetImageBits( &descr );
3923 if (descr.infoBpp <= 8)
3924 HeapFree(GetProcessHeap(), 0, descr.colorMap);
3926 /* Update the DIBSection of the pixmap */
3927 X11DRV_UnlockDIBSection(physDev, TRUE);
3932 /***********************************************************************
3933 * SetDIBits (X11DRV.@)
3935 INT X11DRV_SetDIBits( X11DRV_PDEVICE *physDev, HBITMAP hbitmap, UINT startscan,
3936 UINT lines, LPCVOID bits, const BITMAPINFO *info, UINT coloruse )
3938 X_PHYSBITMAP *physBitmap = X11DRV_get_phys_bitmap( hbitmap );
3939 X11DRV_DIB_IMAGEBITS_DESCR descr;
3941 LONG width, height, tmpheight;
3944 descr.physDev = physDev;
3946 if (!physBitmap) return 0;
3948 if (DIB_GetBitmapInfo( &info->bmiHeader, &width, &height,
3949 &descr.infoBpp, &descr.compression ) == -1)
3953 if (height < 0) height = -height;
3954 if (!lines || (startscan >= height))
3957 if (!GetObjectW( hbitmap, sizeof(bitmap), &bitmap )) return 0;
3959 if (startscan + lines > height) lines = height - startscan;
3961 switch (descr.infoBpp)
3966 descr.colorMap = (RGBQUAD *)X11DRV_DIB_BuildColorMap(
3967 descr.physDev, coloruse,
3968 physBitmap->pixmap_depth,
3969 info, &descr.nColorMap );
3970 if (!descr.colorMap) return 0;
3971 descr.rMask = descr.gMask = descr.bMask = 0;
3975 descr.rMask = (descr.compression == BI_BITFIELDS) ? *(const DWORD *)info->bmiColors : 0x7c00;
3976 descr.gMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 1) : 0x03e0;
3977 descr.bMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 2) : 0x001f;
3983 descr.rMask = (descr.compression == BI_BITFIELDS) ? *(const DWORD *)info->bmiColors : 0xff0000;
3984 descr.gMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 1) : 0x00ff00;
3985 descr.bMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 2) : 0x0000ff;
3994 descr.palentry = NULL;
3995 descr.infoWidth = width;
3996 descr.lines = tmpheight >= 0 ? lines : -lines;
3997 descr.depth = physBitmap->pixmap_depth;
3998 descr.drawable = physBitmap->pixmap;
3999 descr.gc = BITMAP_GC(physBitmap);
4003 descr.yDest = height - startscan - lines;
4004 descr.width = bitmap.bmWidth;
4005 descr.height = lines;
4006 descr.useShm = FALSE;
4007 descr.dibpitch = ((descr.infoWidth * descr.infoBpp + 31) &~31) / 8;
4008 X11DRV_DIB_Lock( physBitmap, DIB_Status_GdiMod, FALSE );
4009 result = X11DRV_DIB_SetImageBits( &descr );
4010 X11DRV_DIB_Unlock( physBitmap, TRUE );
4012 HeapFree(GetProcessHeap(), 0, descr.colorMap);
4017 /***********************************************************************
4018 * GetDIBits (X11DRV.@)
4020 INT X11DRV_GetDIBits( X11DRV_PDEVICE *physDev, HBITMAP hbitmap, UINT startscan, UINT lines,
4021 LPVOID bits, BITMAPINFO *info, UINT coloruse )
4023 X_PHYSBITMAP *physBitmap = X11DRV_get_phys_bitmap( hbitmap );
4025 X11DRV_DIB_IMAGEBITS_DESCR descr;
4026 PALETTEENTRY palette[256];
4029 LONG width, tempHeight;
4034 GetPaletteEntries( GetCurrentObject( physDev->hdc, OBJ_PAL ), 0, 256, palette );
4036 if (!physBitmap) return 0;
4037 if (!(obj_size = GetObjectW( hbitmap, sizeof(dib), &dib ))) return 0;
4039 bitmap_type = DIB_GetBitmapInfo( (BITMAPINFOHEADER*)info, &width, &tempHeight, &descr.infoBpp, &descr.compression);
4040 descr.lines = tempHeight;
4041 if (bitmap_type == -1)
4043 ERR("Invalid bitmap\n");
4046 core_header = (bitmap_type == 0);
4047 colorPtr = (LPBYTE) info + (WORD) info->bmiHeader.biSize;
4049 TRACE("%u scanlines of (%i,%i) -> (%li,%i) starting from %u\n",
4050 lines, dib.dsBm.bmWidth, dib.dsBm.bmHeight, width, descr.lines, startscan);
4052 if( lines > dib.dsBm.bmHeight ) lines = dib.dsBm.bmHeight;
4054 height = descr.lines;
4055 if (height < 0) height = -height;
4056 if( lines > height ) lines = height;
4057 /* Top-down images have a negative biHeight, the scanlines of theses images
4058 * were inverted in X11DRV_DIB_GetImageBits_xx
4059 * To prevent this we simply change the sign of lines
4060 * (the number of scan lines to copy).
4061 * Negative lines are correctly handled by X11DRV_DIB_GetImageBits_xx.
4063 if( descr.lines < 0 && lines > 0) lines = -lines;
4065 if( startscan >= dib.dsBm.bmHeight ) return 0;
4067 descr.colorMap = NULL;
4069 switch (descr.infoBpp)
4074 descr.rMask= descr.gMask = descr.bMask = 0;
4075 if(coloruse == DIB_RGB_COLORS)
4076 descr.colorMap = colorPtr;
4078 int num_colors = 1 << descr.infoBpp, i;
4081 WORD *index = (WORD*)colorPtr;
4082 descr.colorMap = rgb = HeapAlloc(GetProcessHeap(), 0, num_colors * sizeof(RGBQUAD));
4083 for(i = 0; i < num_colors; i++, rgb++, index++) {
4084 colref = X11DRV_PALETTE_ToLogical(X11DRV_PALETTE_ToPhysical(physDev, PALETTEINDEX(*index)));
4085 rgb->rgbRed = GetRValue(colref);
4086 rgb->rgbGreen = GetGValue(colref);
4087 rgb->rgbBlue = GetBValue(colref);
4088 rgb->rgbReserved = 0;
4094 descr.rMask = (descr.compression == BI_BITFIELDS) ? *(const DWORD *)info->bmiColors : 0x7c00;
4095 descr.gMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 1) : 0x03e0;
4096 descr.bMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 2) : 0x001f;
4100 descr.rMask = (descr.compression == BI_BITFIELDS) ? *(const DWORD *)info->bmiColors : 0xff0000;
4101 descr.gMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 1) : 0x00ff00;
4102 descr.bMask = (descr.compression == BI_BITFIELDS) ? *((const DWORD *)info->bmiColors + 2) : 0x0000ff;
4106 descr.physDev = physDev;
4107 descr.palentry = palette;
4109 descr.image = physBitmap->image;
4110 descr.infoWidth = width;
4111 descr.lines = lines;
4112 descr.depth = physBitmap->pixmap_depth;
4113 descr.drawable = physBitmap->pixmap;
4114 descr.gc = BITMAP_GC(physBitmap);
4115 descr.width = dib.dsBm.bmWidth;
4116 descr.height = dib.dsBm.bmHeight;
4120 descr.sizeImage = core_header ? 0 : info->bmiHeader.biSizeImage;
4122 if (descr.lines > 0)
4124 descr.ySrc = (descr.height-1) - (startscan + (lines-1));
4128 descr.ySrc = startscan;
4130 #ifdef HAVE_LIBXXSHM
4131 descr.useShm = (obj_size == sizeof(DIBSECTION)) && (physBitmap->shminfo.shmid != -1);
4133 descr.useShm = FALSE;
4135 descr.dibpitch = (obj_size == sizeof(DIBSECTION)) ? dib.dsBm.bmWidthBytes
4136 : (((descr.infoWidth * descr.infoBpp + 31) &~31) / 8);
4138 X11DRV_DIB_Lock( physBitmap, DIB_Status_GdiMod, FALSE );
4139 X11DRV_DIB_GetImageBits( &descr );
4140 X11DRV_DIB_Unlock( physBitmap, TRUE );
4142 if(!core_header && info->bmiHeader.biSizeImage == 0) /* Fill in biSizeImage */
4143 info->bmiHeader.biSizeImage = X11DRV_DIB_GetDIBImageBytes( descr.infoWidth,
4147 if (descr.compression == BI_BITFIELDS)
4149 *(DWORD *)info->bmiColors = descr.rMask;
4150 *((DWORD *)info->bmiColors + 1) = descr.gMask;
4151 *((DWORD *)info->bmiColors + 2) = descr.bMask;
4153 else if (!core_header)
4155 /* if RLE or JPEG compression were supported,
4156 * this line would be invalid. */
4157 info->bmiHeader.biCompression = 0;
4160 if(descr.colorMap != colorPtr)
4161 HeapFree(GetProcessHeap(), 0, descr.colorMap);
4165 /***********************************************************************
4166 * DIB_DoProtectDIBSection
4168 static void X11DRV_DIB_DoProtectDIBSection( X_PHYSBITMAP *physBitmap, DWORD new_prot )
4172 VirtualProtect(physBitmap->base, physBitmap->size, new_prot, &old_prot);
4173 TRACE("Changed protection from %ld to %ld\n", old_prot, new_prot);
4176 /***********************************************************************
4177 * X11DRV_DIB_DoCopyDIBSection
4179 static void X11DRV_DIB_DoCopyDIBSection(X_PHYSBITMAP *physBitmap, BOOL toDIB,
4180 void *colorMap, int nColorMap,
4181 Drawable dest, GC gc,
4182 DWORD xSrc, DWORD ySrc,
4183 DWORD xDest, DWORD yDest,
4184 DWORD width, DWORD height)
4186 DIBSECTION dibSection;
4187 X11DRV_DIB_IMAGEBITS_DESCR descr;
4188 int identity[2] = {0,1};
4190 if (!GetObjectW( physBitmap->hbitmap, sizeof(dibSection), &dibSection )) return;
4192 descr.physDev = NULL;
4193 descr.palentry = NULL;
4194 descr.infoWidth = dibSection.dsBmih.biWidth;
4195 descr.infoBpp = dibSection.dsBmih.biBitCount;
4196 descr.lines = dibSection.dsBmih.biHeight;
4197 descr.image = physBitmap->image;
4198 descr.colorMap = colorMap;
4199 descr.nColorMap = nColorMap;
4200 descr.bits = dibSection.dsBm.bmBits;
4201 descr.depth = physBitmap->pixmap_depth;
4202 descr.compression = dibSection.dsBmih.biCompression;
4204 if(descr.infoBpp == 1)
4205 descr.colorMap = (void*)identity;
4207 switch (descr.infoBpp)
4212 descr.rMask = descr.gMask = descr.bMask = 0;
4216 descr.rMask = (descr.compression == BI_BITFIELDS) ? dibSection.dsBitfields[0] : 0x7c00;
4217 descr.gMask = (descr.compression == BI_BITFIELDS) ? dibSection.dsBitfields[1] : 0x03e0;
4218 descr.bMask = (descr.compression == BI_BITFIELDS) ? dibSection.dsBitfields[2] : 0x001f;
4223 descr.rMask = (descr.compression == BI_BITFIELDS) ? dibSection.dsBitfields[0] : 0xff0000;
4224 descr.gMask = (descr.compression == BI_BITFIELDS) ? dibSection.dsBitfields[1] : 0x00ff00;
4225 descr.bMask = (descr.compression == BI_BITFIELDS) ? dibSection.dsBitfields[2] : 0x0000ff;
4230 descr.drawable = dest;
4234 descr.xDest = xDest;
4235 descr.yDest = yDest;
4236 descr.width = width;
4237 descr.height = height;
4238 descr.sizeImage = 0;
4240 #ifdef HAVE_LIBXXSHM
4241 descr.useShm = (physBitmap->shminfo.shmid != -1);
4243 descr.useShm = FALSE;
4245 descr.dibpitch = dibSection.dsBm.bmWidthBytes;
4249 TRACE("Copying from Pixmap to DIB bits\n");
4250 X11DRV_DIB_GetImageBits( &descr );
4254 TRACE("Copying from DIB bits to Pixmap\n");
4255 X11DRV_DIB_SetImageBits( &descr );
4259 /***********************************************************************
4260 * X11DRV_DIB_CopyDIBSection
4262 void X11DRV_DIB_CopyDIBSection(X11DRV_PDEVICE *physDevSrc, X11DRV_PDEVICE *physDevDst,
4263 DWORD xSrc, DWORD ySrc, DWORD xDest, DWORD yDest,
4264 DWORD width, DWORD height)
4267 X_PHYSBITMAP *physBitmap;
4268 int nColorMap = 0, *colorMap = NULL, aColorMap = FALSE;
4270 TRACE("(%p,%p,%ld,%ld,%ld,%ld,%ld,%ld)\n", physDevSrc->hdc, physDevDst->hdc,
4271 xSrc, ySrc, xDest, yDest, width, height);
4272 /* this function is meant as an optimization for BitBlt,
4273 * not to be called otherwise */
4274 physBitmap = physDevSrc->bitmap;
4275 if (!physBitmap || GetObjectW( physBitmap->hbitmap, sizeof(dib), &dib ) != sizeof(dib))
4277 ERR("called for non-DIBSection!?\n");
4280 /* while BitBlt should already have made sure we only get
4281 * positive values, we should check for oversize values */
4282 if ((xSrc < dib.dsBm.bmWidth) &&
4283 (ySrc < dib.dsBm.bmHeight)) {
4284 if (xSrc + width > dib.dsBm.bmWidth)
4285 width = dib.dsBm.bmWidth - xSrc;
4286 if (ySrc + height > dib.dsBm.bmHeight)
4287 height = dib.dsBm.bmHeight - ySrc;
4288 /* if the source bitmap is 8bpp or less, we're supposed to use the
4289 * DC's palette for color conversion (not the DIB color table) */
4290 if (dib.dsBm.bmBitsPixel <= 8) {
4291 HPALETTE hPalette = GetCurrentObject( physDevSrc->hdc, OBJ_PAL );
4292 if (!hPalette || (hPalette == GetStockObject(DEFAULT_PALETTE))) {
4293 /* HACK: no palette has been set in the source DC,
4294 * use the DIB colormap instead - this is necessary in some
4295 * cases since we need to do depth conversion in some places
4296 * where real Windows can just copy data straight over */
4297 colorMap = physBitmap->colorMap;
4298 nColorMap = physBitmap->nColorMap;
4300 colorMap = X11DRV_DIB_BuildColorMap( physDevSrc, (WORD)-1,
4301 dib.dsBm.bmBitsPixel,
4302 (BITMAPINFO*)&dib.dsBmih,
4304 if (colorMap) aColorMap = TRUE;
4307 /* perform the copy */
4308 X11DRV_DIB_DoCopyDIBSection(physBitmap, FALSE, colorMap, nColorMap,
4309 physDevDst->drawable, physDevDst->gc, xSrc, ySrc,
4310 physDevDst->org.x + xDest, physDevDst->org.y + yDest,
4312 /* free color mapping */
4314 HeapFree(GetProcessHeap(), 0, colorMap);
4318 /***********************************************************************
4319 * X11DRV_DIB_DoUpdateDIBSection
4321 static void X11DRV_DIB_DoUpdateDIBSection(X_PHYSBITMAP *physBitmap, BOOL toDIB)
4325 GetObjectW( physBitmap->hbitmap, sizeof(bitmap), &bitmap );
4326 X11DRV_DIB_DoCopyDIBSection(physBitmap, toDIB,
4327 physBitmap->colorMap, physBitmap->nColorMap,
4328 physBitmap->pixmap, BITMAP_GC(physBitmap),
4329 0, 0, 0, 0, bitmap.bmWidth, bitmap.bmHeight);
4332 /***********************************************************************
4333 * X11DRV_DIB_FaultHandler
4335 static LONG CALLBACK X11DRV_DIB_FaultHandler( PEXCEPTION_POINTERS ep )
4337 X_PHYSBITMAP *physBitmap = NULL;
4342 if (ep->ExceptionRecord->ExceptionCode != EXCEPTION_ACCESS_VIOLATION)
4343 return EXCEPTION_CONTINUE_SEARCH;
4345 addr = (BYTE *)ep->ExceptionRecord->ExceptionInformation[1];
4347 EnterCriticalSection(&dibs_cs);
4348 LIST_FOR_EACH( ptr, &dibs_list )
4350 physBitmap = LIST_ENTRY( ptr, X_PHYSBITMAP, entry );
4351 if ((physBitmap->base <= addr) && (addr < physBitmap->base + physBitmap->size))
4357 LeaveCriticalSection(&dibs_cs);
4359 if (!found) return EXCEPTION_CONTINUE_SEARCH;
4361 X11DRV_DIB_Lock( physBitmap, DIB_Status_None, FALSE );
4362 if (ep->ExceptionRecord->ExceptionInformation[0]) {
4363 /* the app tried to write the DIB bits */
4364 X11DRV_DIB_Coerce( physBitmap, DIB_Status_AppMod, FALSE );
4366 /* the app tried to read the DIB bits */
4367 X11DRV_DIB_Coerce( physBitmap, DIB_Status_InSync, FALSE );
4369 X11DRV_DIB_Unlock( physBitmap, TRUE );
4371 return EXCEPTION_CONTINUE_EXECUTION;
4374 /***********************************************************************
4377 static INT X11DRV_DIB_Coerce(X_PHYSBITMAP *physBitmap, INT req, BOOL lossy)
4379 INT ret = DIB_Status_None;
4381 if (!physBitmap->image) return ret; /* not a DIB section */
4382 EnterCriticalSection(&physBitmap->lock);
4383 ret = physBitmap->status;
4385 case DIB_Status_GdiMod:
4386 /* GDI access - request to draw on pixmap */
4387 switch (physBitmap->status)
4390 case DIB_Status_None:
4391 physBitmap->p_status = DIB_Status_GdiMod;
4392 X11DRV_DIB_DoUpdateDIBSection( physBitmap, FALSE );
4395 case DIB_Status_GdiMod:
4396 TRACE("GdiMod requested in status GdiMod\n" );
4397 physBitmap->p_status = DIB_Status_GdiMod;
4400 case DIB_Status_InSync:
4401 TRACE("GdiMod requested in status InSync\n" );
4402 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_NOACCESS );
4403 physBitmap->status = DIB_Status_GdiMod;
4404 physBitmap->p_status = DIB_Status_InSync;
4407 case DIB_Status_AppMod:
4408 TRACE("GdiMod requested in status AppMod\n" );
4410 /* make it readonly to avoid app changing data while we copy */
4411 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_READONLY );
4412 X11DRV_DIB_DoUpdateDIBSection( physBitmap, FALSE );
4414 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_NOACCESS );
4415 physBitmap->p_status = DIB_Status_AppMod;
4416 physBitmap->status = DIB_Status_GdiMod;
4421 case DIB_Status_InSync:
4422 /* App access - request access to read DIB surface */
4423 /* (typically called from signal handler) */
4424 switch (physBitmap->status)
4427 case DIB_Status_None:
4428 /* shouldn't happen from signal handler */
4431 case DIB_Status_GdiMod:
4432 TRACE("InSync requested in status GdiMod\n" );
4434 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_READWRITE );
4435 X11DRV_DIB_DoUpdateDIBSection( physBitmap, TRUE );
4437 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_READONLY );
4438 physBitmap->status = DIB_Status_InSync;
4441 case DIB_Status_InSync:
4442 TRACE("InSync requested in status InSync\n" );
4443 /* shouldn't happen from signal handler */
4446 case DIB_Status_AppMod:
4447 TRACE("InSync requested in status AppMod\n" );
4448 /* no reason to do anything here, and this
4449 * shouldn't happen from signal handler */
4454 case DIB_Status_AppMod:
4455 /* App access - request access to write DIB surface */
4456 /* (typically called from signal handler) */
4457 switch (physBitmap->status)
4460 case DIB_Status_None:
4461 /* shouldn't happen from signal handler */
4464 case DIB_Status_GdiMod:
4465 TRACE("AppMod requested in status GdiMod\n" );
4466 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_READWRITE );
4467 if (!lossy) X11DRV_DIB_DoUpdateDIBSection( physBitmap, TRUE );
4468 physBitmap->status = DIB_Status_AppMod;
4471 case DIB_Status_InSync:
4472 TRACE("AppMod requested in status InSync\n" );
4473 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_READWRITE );
4474 physBitmap->status = DIB_Status_AppMod;
4477 case DIB_Status_AppMod:
4478 TRACE("AppMod requested in status AppMod\n" );
4479 /* shouldn't happen from signal handler */
4484 /* it is up to the caller to do the copy/conversion, probably
4485 * using the return value to decide where to copy from */
4487 LeaveCriticalSection(&physBitmap->lock);
4491 /***********************************************************************
4494 static INT X11DRV_DIB_Lock(X_PHYSBITMAP *physBitmap, INT req, BOOL lossy)
4496 INT ret = DIB_Status_None;
4498 if (!physBitmap->image) return ret; /* not a DIB section */
4499 TRACE("Locking %p from thread %04lx\n", physBitmap->hbitmap, GetCurrentThreadId());
4500 EnterCriticalSection(&physBitmap->lock);
4501 ret = physBitmap->status;
4502 if (req != DIB_Status_None)
4503 X11DRV_DIB_Coerce(physBitmap, req, lossy);
4507 /***********************************************************************
4510 static void X11DRV_DIB_Unlock(X_PHYSBITMAP *physBitmap, BOOL commit)
4512 if (!physBitmap->image) return; /* not a DIB section */
4513 switch (physBitmap->status)
4516 case DIB_Status_None:
4517 /* in case anyone is wondering, this is the "signal handler doesn't
4518 * work" case, where we always have to be ready for app access */
4520 switch (physBitmap->p_status)
4522 case DIB_Status_GdiMod:
4523 TRACE("Unlocking and syncing from GdiMod\n" );
4524 X11DRV_DIB_DoUpdateDIBSection( physBitmap, TRUE );
4528 TRACE("Unlocking without needing to sync\n" );
4532 else TRACE("Unlocking with no changes\n");
4533 physBitmap->p_status = DIB_Status_None;
4536 case DIB_Status_GdiMod:
4537 TRACE("Unlocking in status GdiMod\n" );
4538 /* DIB was protected in Coerce */
4540 /* no commit, revert to InSync if applicable */
4541 if ((physBitmap->p_status == DIB_Status_InSync) ||
4542 (physBitmap->p_status == DIB_Status_AppMod)) {
4543 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_READONLY );
4544 physBitmap->status = DIB_Status_InSync;
4549 case DIB_Status_InSync:
4550 TRACE("Unlocking in status InSync\n" );
4551 /* DIB was already protected in Coerce */
4554 case DIB_Status_AppMod:
4555 TRACE("Unlocking in status AppMod\n" );
4556 /* DIB was already protected in Coerce */
4557 /* this case is ordinary only called from the signal handler,
4558 * so we don't bother to check for !commit */
4561 LeaveCriticalSection(&physBitmap->lock);
4562 TRACE("Unlocked %p\n", physBitmap->hbitmap);
4565 /***********************************************************************
4566 * X11DRV_CoerceDIBSection
4568 INT X11DRV_CoerceDIBSection(X11DRV_PDEVICE *physDev, INT req, BOOL lossy)
4570 if (!physDev || !physDev->bitmap) return DIB_Status_None;
4571 return X11DRV_DIB_Coerce(physDev->bitmap, req, lossy);
4574 /***********************************************************************
4575 * X11DRV_LockDIBSection
4577 INT X11DRV_LockDIBSection(X11DRV_PDEVICE *physDev, INT req, BOOL lossy)
4579 if (!physDev || !physDev->bitmap) return DIB_Status_None;
4580 return X11DRV_DIB_Lock(physDev->bitmap, req, lossy);
4583 /***********************************************************************
4584 * X11DRV_UnlockDIBSection
4586 void X11DRV_UnlockDIBSection(X11DRV_PDEVICE *physDev, BOOL commit)
4588 if (!physDev || !physDev->bitmap) return;
4589 X11DRV_DIB_Unlock(physDev->bitmap, commit);
4593 #ifdef HAVE_LIBXXSHM
4594 /***********************************************************************
4595 * X11DRV_XShmErrorHandler
4598 static int XShmErrorHandler( Display *dpy, XErrorEvent *event, void *arg )
4600 return 1; /* FIXME: should check event contents */
4603 /***********************************************************************
4604 * X11DRV_XShmCreateImage
4607 static XImage *X11DRV_XShmCreateImage( int width, int height, int bpp,
4608 XShmSegmentInfo* shminfo)
4612 image = XShmCreateImage(gdi_display, visual, bpp, ZPixmap, NULL, shminfo, width, height);
4615 shminfo->shmid = shmget(IPC_PRIVATE, image->bytes_per_line * height,
4617 if( shminfo->shmid != -1 )
4619 shminfo->shmaddr = image->data = shmat(shminfo->shmid, 0, 0);
4620 if( shminfo->shmaddr != (char*)-1 )
4624 shminfo->readOnly = FALSE;
4625 X11DRV_expect_error( gdi_display, XShmErrorHandler, NULL );
4626 ok = (XShmAttach( gdi_display, shminfo ) != 0);
4627 XSync( gdi_display, False );
4628 if (X11DRV_check_error()) ok = FALSE;
4631 shmctl(shminfo->shmid, IPC_RMID, 0);
4632 return image; /* Success! */
4634 /* An error occurred */
4635 shmdt(shminfo->shmaddr);
4637 shmctl(shminfo->shmid, IPC_RMID, 0);
4638 shminfo->shmid = -1;
4640 XFlush(gdi_display);
4641 XDestroyImage(image);
4646 #endif /* HAVE_LIBXXSHM */
4649 /***********************************************************************
4650 * X11DRV_CreateDIBSection (X11DRV.@)
4652 HBITMAP X11DRV_CreateDIBSection( X11DRV_PDEVICE *physDev, HBITMAP hbitmap,
4653 const BITMAPINFO *bmi, UINT usage )
4655 X_PHYSBITMAP *physBitmap;
4658 if (!(physBitmap = X11DRV_init_phys_bitmap( hbitmap ))) return 0;
4659 physBitmap->status = DIB_Status_None;
4661 GetObjectW( hbitmap, sizeof(dib), &dib );
4663 /* create color map */
4664 if (dib.dsBm.bmBitsPixel <= 8)
4666 physBitmap->colorTable = X11DRV_DIB_BuildColorTable( physDev, usage, dib.dsBm.bmBitsPixel, bmi );
4667 physBitmap->colorMap = X11DRV_DIB_BuildColorMap( physDev,
4668 usage, dib.dsBm.bmBitsPixel, bmi,
4669 &physBitmap->nColorMap );
4672 /* create pixmap and X image */
4674 physBitmap->pixmap_depth = (dib.dsBm.bmBitsPixel == 1) ? 1 : screen_depth;
4675 physBitmap->pixmap = XCreatePixmap( gdi_display, root_window, dib.dsBm.bmWidth,
4676 dib.dsBm.bmHeight, physBitmap->pixmap_depth );
4677 #ifdef HAVE_LIBXXSHM
4678 physBitmap->shminfo.shmid = -1;
4679 if (!XShmQueryExtension(gdi_display) ||
4680 !(physBitmap->image = X11DRV_XShmCreateImage( dib.dsBm.bmWidth, dib.dsBm.bmHeight,
4681 physBitmap->pixmap_depth, &physBitmap->shminfo )) )
4683 physBitmap->image = X11DRV_DIB_CreateXImage( dib.dsBm.bmWidth, dib.dsBm.bmHeight,
4684 physBitmap->pixmap_depth );
4685 wine_tsx11_unlock();
4686 if (!physBitmap->pixmap || !physBitmap->image) return 0;
4688 /* install fault handler */
4689 InitializeCriticalSection( &physBitmap->lock );
4691 physBitmap->base = dib.dsBm.bmBits;
4692 physBitmap->size = dib.dsBmih.biSizeImage;
4693 physBitmap->status = DIB_Status_AppMod;
4696 dibs_handler = AddVectoredExceptionHandler( TRUE, X11DRV_DIB_FaultHandler );
4697 EnterCriticalSection( &dibs_cs );
4698 list_add_head( &dibs_list, &physBitmap->entry );
4699 LeaveCriticalSection( &dibs_cs );
4701 X11DRV_DIB_DoProtectDIBSection( physBitmap, PAGE_READWRITE );
4706 /***********************************************************************
4707 * X11DRV_DIB_DeleteDIBSection
4709 void X11DRV_DIB_DeleteDIBSection(X_PHYSBITMAP *physBitmap, DIBSECTION *dib)
4713 EnterCriticalSection( &dibs_cs );
4714 list_remove( &physBitmap->entry );
4715 last = list_empty( &dibs_list );
4716 LeaveCriticalSection( &dibs_cs );
4720 RemoveVectoredExceptionHandler( dibs_handler );
4721 dibs_handler = NULL;
4724 if (dib->dshSection)
4725 X11DRV_DIB_Coerce(physBitmap, DIB_Status_InSync, FALSE);
4727 if (physBitmap->image)
4730 #ifdef HAVE_LIBXXSHM
4731 if (physBitmap->shminfo.shmid != -1)
4733 XShmDetach( gdi_display, &(physBitmap->shminfo) );
4734 XDestroyImage( physBitmap->image );
4735 shmdt( physBitmap->shminfo.shmaddr );
4736 physBitmap->shminfo.shmid = -1;
4740 XDestroyImage( physBitmap->image );
4741 wine_tsx11_unlock();
4744 HeapFree(GetProcessHeap(), 0, physBitmap->colorMap);
4745 HeapFree(GetProcessHeap(), 0, physBitmap->colorTable);
4746 DeleteCriticalSection(&physBitmap->lock);
4749 /***********************************************************************
4750 * SetDIBColorTable (X11DRV.@)
4752 UINT X11DRV_SetDIBColorTable( X11DRV_PDEVICE *physDev, UINT start, UINT count, const RGBQUAD *colors )
4756 X_PHYSBITMAP *physBitmap = physDev->bitmap;
4758 if (!physBitmap) return 0;
4759 GetObjectW( physBitmap->hbitmap, sizeof(dib), &dib );
4761 if (physBitmap->colorMap && start < physBitmap->nColorMap) {
4762 UINT end = count + start;
4763 if (end > physBitmap->nColorMap) end = physBitmap->nColorMap;
4765 * Changing color table might change the mapping between
4766 * DIB colors and X11 colors and thus alter the visible state
4767 * of the bitmap object.
4770 * FIXME we need to recalculate the pen, brush, text and bkgnd pixels here,
4771 * at least for a 1 bpp dibsection
4773 X11DRV_DIB_Lock( physBitmap, DIB_Status_AppMod, FALSE );
4774 memcpy(physBitmap->colorTable + start, colors, (end - start) * sizeof(RGBQUAD));
4775 X11DRV_DIB_GenColorMap( physDev, physBitmap->colorMap, DIB_RGB_COLORS,
4776 dib.dsBm.bmBitsPixel,
4777 TRUE, colors, start, end );
4778 X11DRV_DIB_Unlock( physBitmap, TRUE );
4784 /***********************************************************************
4785 * GetDIBColorTable (X11DRV.@)
4787 UINT X11DRV_GetDIBColorTable( X11DRV_PDEVICE *physDev, UINT start, UINT count, RGBQUAD *colors )
4790 X_PHYSBITMAP *physBitmap = physDev->bitmap;
4792 if (physBitmap && physBitmap->colorTable && start < physBitmap->nColorMap) {
4793 if (start + count > physBitmap->nColorMap) count = physBitmap->nColorMap - start;
4794 memcpy(colors, physBitmap->colorTable + start, count * sizeof(RGBQUAD));
4802 /***********************************************************************
4803 * X11DRV_DIB_CreateDIBFromBitmap
4805 * Allocates a packed DIB and copies the bitmap data into it.
4807 HGLOBAL X11DRV_DIB_CreateDIBFromBitmap(HDC hdc, HBITMAP hBmp)
4812 LPBITMAPINFOHEADER pbmiHeader;
4813 unsigned int cDataSize, cPackedSize, OffsetBits;
4816 if (!GetObjectW( hBmp, sizeof(bmp), &bmp )) return 0;
4819 * A packed DIB contains a BITMAPINFO structure followed immediately by
4820 * an optional color palette and the pixel data.
4823 /* Calculate the size of the packed DIB */
4824 cDataSize = X11DRV_DIB_GetDIBWidthBytes( bmp.bmWidth, bmp.bmBitsPixel ) * abs( bmp.bmHeight );
4825 cPackedSize = sizeof(BITMAPINFOHEADER)
4826 + ( (bmp.bmBitsPixel <= 8) ? (sizeof(RGBQUAD) * (1 << bmp.bmBitsPixel)) : 0 )
4828 /* Get the offset to the bits */
4829 OffsetBits = cPackedSize - cDataSize;
4831 /* Allocate the packed DIB */
4832 TRACE("\tAllocating packed DIB of size %d\n", cPackedSize);
4833 hPackedDIB = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE /*| GMEM_ZEROINIT*/,
4837 WARN("Could not allocate packed DIB!\n");
4841 /* A packed DIB starts with a BITMAPINFOHEADER */
4842 pPackedDIB = GlobalLock(hPackedDIB);
4843 pbmiHeader = (LPBITMAPINFOHEADER)pPackedDIB;
4845 /* Init the BITMAPINFOHEADER */
4846 pbmiHeader->biSize = sizeof(BITMAPINFOHEADER);
4847 pbmiHeader->biWidth = bmp.bmWidth;
4848 pbmiHeader->biHeight = bmp.bmHeight;
4849 pbmiHeader->biPlanes = 1;
4850 pbmiHeader->biBitCount = bmp.bmBitsPixel;
4851 pbmiHeader->biCompression = BI_RGB;
4852 pbmiHeader->biSizeImage = 0;
4853 pbmiHeader->biXPelsPerMeter = pbmiHeader->biYPelsPerMeter = 0;
4854 pbmiHeader->biClrUsed = 0;
4855 pbmiHeader->biClrImportant = 0;
4857 /* Retrieve the DIB bits from the bitmap and fill in the
4858 * DIB color table if present */
4860 nLinesCopied = GetDIBits(hdc, /* Handle to device context */
4861 hBmp, /* Handle to bitmap */
4862 0, /* First scan line to set in dest bitmap */
4863 bmp.bmHeight, /* Number of scan lines to copy */
4864 pPackedDIB + OffsetBits, /* [out] Address of array for bitmap bits */
4865 (LPBITMAPINFO) pbmiHeader, /* [out] Address of BITMAPINFO structure */
4866 0); /* RGB or palette index */
4867 GlobalUnlock(hPackedDIB);
4869 /* Cleanup if GetDIBits failed */
4870 if (nLinesCopied != bmp.bmHeight)
4872 TRACE("\tGetDIBits returned %d. Actual lines=%d\n", nLinesCopied, bmp.bmHeight);
4873 GlobalFree(hPackedDIB);
4880 /**************************************************************************
4881 * X11DRV_DIB_CreateDIBFromPixmap
4883 * Allocates a packed DIB and copies the Pixmap data into it.
4884 * The Pixmap passed in is deleted after the conversion.
4886 HGLOBAL X11DRV_DIB_CreateDIBFromPixmap(Pixmap pixmap, HDC hdc)
4889 X_PHYSBITMAP *physBitmap;
4890 HBITMAP hBmp = 0, old;
4891 HGLOBAL hPackedDIB = 0;
4893 int x,y; /* Unused */
4894 unsigned border_width; /* Unused */
4895 unsigned int depth, width, height;
4897 /* Get the Pixmap dimensions and bit depth */
4899 if (!XGetGeometry(gdi_display, pixmap, &root, &x, &y, &width, &height,
4900 &border_width, &depth)) depth = 0;
4901 wine_tsx11_unlock();
4902 if (!depth) return 0;
4904 TRACE("\tPixmap properties: width=%d, height=%d, depth=%d\n",
4905 width, height, depth);
4908 * Create an HBITMAP with the same dimensions and BPP as the pixmap,
4909 * and make it a container for the pixmap passed.
4911 hBmp = CreateBitmap( width, height, 1, depth, NULL );
4913 /* force bitmap to be owned by a screen DC */
4914 hdcMem = CreateCompatibleDC( hdc );
4915 old = SelectObject( hdcMem, hBmp );
4917 physBitmap = X11DRV_get_phys_bitmap( hBmp );
4920 if (physBitmap->pixmap) XFreePixmap( gdi_display, physBitmap->pixmap );
4921 physBitmap->pixmap = pixmap;
4922 wine_tsx11_unlock();
4924 SelectObject( hdcMem, old );
4928 * Create a packed DIB from the Pixmap wrapper bitmap created above.
4929 * A packed DIB contains a BITMAPINFO structure followed immediately by
4930 * an optional color palette and the pixel data.
4932 hPackedDIB = X11DRV_DIB_CreateDIBFromBitmap(hdc, hBmp);
4934 /* We can now get rid of the HBITMAP wrapper we created earlier.
4935 * Note: Simply calling DeleteObject will free the embedded Pixmap as well.
4939 TRACE("\tReturning packed DIB %p\n", hPackedDIB);
4944 /**************************************************************************
4945 * X11DRV_DIB_CreatePixmapFromDIB
4947 * Creates a Pixmap from a packed DIB
4949 Pixmap X11DRV_DIB_CreatePixmapFromDIB( HGLOBAL hPackedDIB, HDC hdc )
4952 X_PHYSBITMAP *physBitmap;
4956 /* Create a DDB from the DIB */
4958 pbmi = GlobalLock(hPackedDIB);
4959 hBmp = CreateDIBitmap(hdc, &pbmi->bmiHeader, CBM_INIT,
4960 (LPBYTE)pbmi + X11DRV_DIB_BitmapInfoSize( pbmi, DIB_RGB_COLORS ),
4961 pbmi, DIB_RGB_COLORS);
4962 GlobalUnlock(hPackedDIB);
4964 /* clear the physBitmap so that we can steal its pixmap */
4965 physBitmap = X11DRV_get_phys_bitmap( hBmp );
4966 pixmap = physBitmap->pixmap;
4967 physBitmap->pixmap = 0;
4969 /* Delete the DDB we created earlier now that we have stolen its pixmap */
4972 TRACE("Returning Pixmap %ld\n", pixmap);