2 * X11DRV OEM bitmap objects
4 * Copyright 1994, 1995 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(palette
);
37 /* Palette indexed mode:
38 * logical palette -> mapping -> pixel
41 * Windows needs contiguous color space ( from 0 to n ) but
42 * it is possible only with the private colormap. Otherwise we
43 * have to map DC palette indices to real pixel values. With
44 * private colormaps it boils down to the identity mapping. The
45 * other special case is when we have a fixed color visual with
46 * the screendepth > 8 - we abandon palette mappings altogether
47 * because pixel values can be calculated without X server
50 * Windows palette manager is described in the
51 * http://premium.microsoft.com/msdn/library/techart/f30/f34/f40/d4d/sa942.htm
54 static PALETTEENTRY
*COLOR_sysPal
; /* current system palette */
56 static int COLOR_gapStart
= 256;
57 static int COLOR_gapEnd
= -1;
58 static int COLOR_gapFilled
= 0;
59 static int COLOR_max
= 256;
61 Colormap X11DRV_PALETTE_PaletteXColormap
= 0;
62 UINT16 X11DRV_PALETTE_PaletteFlags
= 0;
70 /* initialize to zero to handle abortive X11DRV_PALETTE_VIRTUAL visuals */
71 static ColorShifts X11DRV_PALETTE_PRed
= {0,0,0};
72 static ColorShifts X11DRV_PALETTE_LRed
= {0,0,0};
73 static ColorShifts X11DRV_PALETTE_PGreen
= {0,0,0};
74 static ColorShifts X11DRV_PALETTE_LGreen
= {0,0,0};
75 static ColorShifts X11DRV_PALETTE_PBlue
= {0,0,0};
76 static ColorShifts X11DRV_PALETTE_LBlue
= {0,0,0};
77 static int X11DRV_PALETTE_Graymax
= 0;
79 static int palette_size
;
81 /* First free dynamic color cell, 0 = full palette, -1 = fixed palette */
82 static int X11DRV_PALETTE_firstFree
= 0;
83 static unsigned char X11DRV_PALETTE_freeList
[256];
85 /**********************************************************************/
87 /* Map an EGA index (0..15) to a pixel value in the system color space. */
89 int X11DRV_PALETTE_mapEGAPixel
[16];
91 /**********************************************************************/
93 #define NB_COLORCUBE_START_INDEX 63
94 #define NB_PALETTE_EMPTY_VALUE -1
96 /* Maps entry in the system palette to X pixel value */
97 int *X11DRV_PALETTE_PaletteToXPixel
= NULL
;
99 /* Maps pixel to the entry in the system palette */
100 int *X11DRV_PALETTE_XPixelToPalette
= NULL
;
102 /**********************************************************************/
104 static BOOL
X11DRV_PALETTE_BuildPrivateMap( const PALETTEENTRY
*sys_pal_template
);
105 static BOOL
X11DRV_PALETTE_BuildSharedMap( const PALETTEENTRY
*sys_pal_template
);
106 static void X11DRV_PALETTE_ComputeShifts(unsigned long maskbits
, ColorShifts
*physical
, ColorShifts
*to_logical
);
107 static void X11DRV_PALETTE_FillDefaultColors( const PALETTEENTRY
*sys_pal_template
);
108 static void X11DRV_PALETTE_FormatSystemPalette(void);
109 static BOOL
X11DRV_PALETTE_CheckSysColor( const PALETTEENTRY
*sys_pal_template
, COLORREF c
);
110 static int X11DRV_PALETTE_LookupSystemXPixel(COLORREF col
);
113 /***********************************************************************
116 * Initialize color management.
118 int X11DRV_PALETTE_Init(void)
120 int mask
, white
, black
;
122 PALETTEENTRY sys_pal_template
[NB_RESERVED_COLORS
];
124 TRACE("initializing palette manager...\n");
126 white
= WhitePixel( gdi_display
, DefaultScreen(gdi_display
) );
127 black
= BlackPixel( gdi_display
, DefaultScreen(gdi_display
) );
129 for( mask
= 1; !((white
& mask
)^(black
& mask
)); mask
<<= 1 )
131 X11DRV_PALETTE_PaletteFlags
= (white
& mask
) ? X11DRV_PALETTE_WHITESET
: 0;
132 palette_size
= visual
->map_entries
;
134 switch(visual
->class)
137 X11DRV_PALETTE_PaletteFlags
|= X11DRV_PALETTE_VIRTUAL
;
142 BOOL private_color_map
= FALSE
;
143 if(!RegOpenKeyA(HKEY_LOCAL_MACHINE
, "Software\\Wine\\Wine\\Config\\x11drv", &hkey
))
146 DWORD type
, count
= sizeof(buffer
);
147 if(!RegQueryValueExA(hkey
, "PrivateColorMap", 0, &type
, buffer
, &count
))
150 private_color_map
= (ch
== 'y' || ch
== 'Y' || ch
== 't' || ch
== 'T' || ch
== '1');
155 if (private_color_map
)
157 XSetWindowAttributes win_attr
;
159 X11DRV_PALETTE_PaletteXColormap
= TSXCreateColormap( gdi_display
, root_window
,
161 if (X11DRV_PALETTE_PaletteXColormap
)
163 X11DRV_PALETTE_PaletteFlags
|= (X11DRV_PALETTE_PRIVATE
| X11DRV_PALETTE_WHITESET
);
166 for( white
= palette_size
- 1; !(white
& 1); white
>>= 1 )
169 if( root_window
!= DefaultRootWindow(gdi_display
) )
171 win_attr
.colormap
= X11DRV_PALETTE_PaletteXColormap
;
172 TSXChangeWindowAttributes( gdi_display
, root_window
, CWColormap
, &win_attr
);
177 X11DRV_PALETTE_PaletteXColormap
= TSXCreateColormap(gdi_display
, root_window
,
183 X11DRV_PALETTE_PaletteXColormap
= TSXCreateColormap(gdi_display
, root_window
,
185 X11DRV_PALETTE_PaletteFlags
|= X11DRV_PALETTE_FIXED
;
186 X11DRV_PALETTE_Graymax
= (1 << screen_depth
)-1;
190 X11DRV_PALETTE_PaletteFlags
|= X11DRV_PALETTE_VIRTUAL
;
192 int *depths
,nrofdepths
;
193 /* FIXME: hack to detect XFree32 XF_VGA16 ... We just have
196 depths
=TSXListDepths(gdi_display
,DefaultScreen(gdi_display
),&nrofdepths
);
197 if ((nrofdepths
==2) && ((depths
[0]==4) || depths
[1]==4)) {
199 for( white
= palette_size
- 1; !(white
& 1); white
>>= 1 )
201 X11DRV_PALETTE_PaletteFlags
= (white
& mask
) ? X11DRV_PALETTE_WHITESET
: 0;
202 X11DRV_PALETTE_PaletteXColormap
= TSXCreateColormap(gdi_display
, root_window
,
208 X11DRV_PALETTE_PaletteXColormap
= TSXCreateColormap(gdi_display
, root_window
,
210 X11DRV_PALETTE_PaletteFlags
|= X11DRV_PALETTE_FIXED
;
211 X11DRV_PALETTE_ComputeShifts(visual
->red_mask
, &X11DRV_PALETTE_PRed
, &X11DRV_PALETTE_LRed
);
212 X11DRV_PALETTE_ComputeShifts(visual
->green_mask
, &X11DRV_PALETTE_PGreen
, &X11DRV_PALETTE_LGreen
);
213 X11DRV_PALETTE_ComputeShifts(visual
->blue_mask
, &X11DRV_PALETTE_PBlue
, &X11DRV_PALETTE_LBlue
);
218 TRACE(" visual class %i (%i)\n", visual
->class, monoPlane
);
220 memset(X11DRV_PALETTE_freeList
, 0, 256*sizeof(unsigned char));
222 GetPaletteEntries( GetStockObject(DEFAULT_PALETTE
), 0, NB_RESERVED_COLORS
, sys_pal_template
);
224 if (X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_PRIVATE
)
225 X11DRV_PALETTE_BuildPrivateMap( sys_pal_template
);
227 X11DRV_PALETTE_BuildSharedMap( sys_pal_template
);
229 /* Build free list */
231 if( X11DRV_PALETTE_firstFree
!= -1 )
232 X11DRV_PALETTE_FormatSystemPalette();
234 X11DRV_PALETTE_FillDefaultColors( sys_pal_template
);
236 if( X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_VIRTUAL
)
239 palette_size
= visual
->map_entries
;
244 /***********************************************************************
245 * X11DRV_PALETTE_Cleanup
247 * Free external colors we grabbed in the FillDefaultPalette()
249 void X11DRV_PALETTE_Cleanup(void)
251 if( COLOR_gapFilled
)
252 TSXFreeColors(gdi_display
, X11DRV_PALETTE_PaletteXColormap
,
253 (unsigned long*)(X11DRV_PALETTE_PaletteToXPixel
+ COLOR_gapStart
),
257 /***********************************************************************
258 * X11DRV_PALETTE_ComputeShifts
260 * Calculate conversion parameters for direct mapped visuals
262 static void X11DRV_PALETTE_ComputeShifts(unsigned long maskbits
, ColorShifts
*physical
, ColorShifts
*to_logical
)
277 for(i
=0;!(maskbits
&1);i
++)
281 physical
->max
= maskbits
;
283 for(i
=0;maskbits
!=0;i
++)
287 if (physical
->scale
>8)
289 /* On FreeBSD, VNC's default 32bpp mode is bgrabb (ffc00000,3ff800,7ff)!
290 * So we adjust the shifts to also normalize the color fields to
291 * the Win32 standard of 8 bits per color.
293 to_logical
->shift
=physical
->shift
+(physical
->scale
-8);
295 to_logical
->max
=0xff;
297 to_logical
->shift
=physical
->shift
;
298 to_logical
->scale
=physical
->scale
;
299 to_logical
->max
=physical
->max
;
303 /***********************************************************************
304 * X11DRV_PALETTE_BuildPrivateMap
306 * Allocate colorcells and initialize mapping tables.
308 static BOOL
X11DRV_PALETTE_BuildPrivateMap( const PALETTEENTRY
*sys_pal_template
)
310 /* Private colormap - identity mapping */
315 if((COLOR_sysPal
= (PALETTEENTRY
*)HeapAlloc(GetProcessHeap(), 0, sizeof(PALETTEENTRY
)*palette_size
)) == NULL
) {
316 WARN("Can not allocate system palette\n");
320 TRACE("Building private map - %i palette entries\n", palette_size
);
322 /* Allocate system palette colors */
324 for( i
=0; i
< palette_size
; i
++ )
326 if( i
< NB_RESERVED_COLORS
/2 )
328 color
.red
= sys_pal_template
[i
].peRed
* 65535 / 255;
329 color
.green
= sys_pal_template
[i
].peGreen
* 65535 / 255;
330 color
.blue
= sys_pal_template
[i
].peBlue
* 65535 / 255;
331 COLOR_sysPal
[i
] = sys_pal_template
[i
];
332 COLOR_sysPal
[i
].peFlags
|= PC_SYS_USED
;
334 else if( i
>= palette_size
- NB_RESERVED_COLORS
/2 )
336 int j
= NB_RESERVED_COLORS
+ i
- palette_size
;
337 color
.red
= sys_pal_template
[j
].peRed
* 65535 / 255;
338 color
.green
= sys_pal_template
[j
].peGreen
* 65535 / 255;
339 color
.blue
= sys_pal_template
[j
].peBlue
* 65535 / 255;
340 COLOR_sysPal
[i
] = sys_pal_template
[j
];
341 COLOR_sysPal
[i
].peFlags
|= PC_SYS_USED
;
344 color
.flags
= DoRed
| DoGreen
| DoBlue
;
346 TSXStoreColor(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &color
);
348 /* Set EGA mapping if color is from the first or last eight */
351 X11DRV_PALETTE_mapEGAPixel
[i
] = color
.pixel
;
352 else if (i
>= palette_size
- 8 )
353 X11DRV_PALETTE_mapEGAPixel
[i
- (palette_size
- 16)] = color
.pixel
;
356 X11DRV_PALETTE_XPixelToPalette
= X11DRV_PALETTE_PaletteToXPixel
= NULL
;
358 COLOR_gapStart
= 256; COLOR_gapEnd
= -1;
360 X11DRV_PALETTE_firstFree
= (palette_size
> NB_RESERVED_COLORS
)?NB_RESERVED_COLORS
/2 : -1;
365 /***********************************************************************
366 * X11DRV_PALETTE_BuildSharedMap
368 * Allocate colorcells and initialize mapping tables.
370 static BOOL
X11DRV_PALETTE_BuildSharedMap( const PALETTEENTRY
*sys_pal_template
)
373 unsigned long sysPixel
[NB_RESERVED_COLORS
];
374 unsigned long* pixDynMapping
= NULL
;
375 unsigned long plane_masks
[1];
377 int diff
, r
, g
, b
, max
= 256, bp
= 0, wp
= 1;
379 int defaultCM_max_copy
;
381 XColor defaultColors
[256];
384 defaultCM_max_copy
= 128;
387 if(!RegOpenKeyA(HKEY_LOCAL_MACHINE
, "Software\\Wine\\Wine\\Config\\x11drv", &hkey
))
392 count
= sizeof(buffer
);
393 if(!RegQueryValueExA(hkey
, "CopyDefaultColors", 0, &type
, buffer
, &count
))
394 defaultCM_max_copy
= atoi(buffer
);
396 count
= sizeof(buffer
);
397 if(!RegQueryValueExA(hkey
, "AllocSystemColors", 0, &type
, buffer
, &count
))
398 COLOR_max
= atoi(buffer
);
403 /* Copy the first bunch of colors out of the default colormap to prevent
404 * colormap flashing as much as possible. We're likely to get the most
405 * important Window Manager colors, etc in the first 128 colors */
406 defaultCM
= DefaultColormap( gdi_display
, DefaultScreen(gdi_display
) );
408 for (i
= 0; i
< defaultCM_max_copy
; i
++)
409 defaultColors
[i
].pixel
= (long) i
;
410 TSXQueryColors(gdi_display
, defaultCM
, &defaultColors
[0], defaultCM_max_copy
);
411 for (i
= 0; i
< defaultCM_max_copy
; i
++)
412 TSXAllocColor( gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &defaultColors
[i
] );
414 if (COLOR_max
> 256) COLOR_max
= 256;
415 else if (COLOR_max
< 20) COLOR_max
= 20;
416 TRACE("%d colors configured.\n", COLOR_max
);
418 TRACE("Building shared map - %i palette entries\n", palette_size
);
420 /* Be nice and allocate system colors as read-only */
422 for( i
= 0; i
< NB_RESERVED_COLORS
; i
++ )
424 color
.red
= sys_pal_template
[i
].peRed
* 65535 / 255;
425 color
.green
= sys_pal_template
[i
].peGreen
* 65535 / 255;
426 color
.blue
= sys_pal_template
[i
].peBlue
* 65535 / 255;
427 color
.flags
= DoRed
| DoGreen
| DoBlue
;
429 if (!TSXAllocColor( gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &color
))
435 WARN("Not enough colors for the full system palette.\n");
437 bp
= BlackPixel(gdi_display
, DefaultScreen(gdi_display
));
438 wp
= WhitePixel(gdi_display
, DefaultScreen(gdi_display
));
440 max
= (0xffffffff)>>(32 - screen_depth
);
448 /* reinit color (XAllocColor() may change it)
449 * and map to the best shared colorcell */
451 color
.red
= sys_pal_template
[i
].peRed
* 65535 / 255;
452 color
.green
= sys_pal_template
[i
].peGreen
* 65535 / 255;
453 color
.blue
= sys_pal_template
[i
].peBlue
* 65535 / 255;
455 best
.pixel
= best
.red
= best
.green
= best
.blue
= 0;
456 for( c
.pixel
= 0, diff
= 0x7fffffff; c
.pixel
< max
; c
.pixel
+= step
)
458 TSXQueryColor(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &c
);
459 r
= (c
.red
- color
.red
)>>8;
460 g
= (c
.green
- color
.green
)>>8;
461 b
= (c
.blue
- color
.blue
)>>8;
463 if( r
< diff
) { best
= c
; diff
= r
; }
466 if( TSXAllocColor(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &best
) )
467 color
.pixel
= best
.pixel
;
468 else color
.pixel
= (i
< NB_RESERVED_COLORS
/2)? bp
: wp
;
471 sysPixel
[i
] = color
.pixel
;
473 TRACE("syscolor(%lx) -> pixel %i\n",
474 *(COLORREF
*)(sys_pal_template
+i
), (int)color
.pixel
);
476 /* Set EGA mapping if color in the first or last eight */
479 X11DRV_PALETTE_mapEGAPixel
[i
] = color
.pixel
;
480 else if (i
>= NB_RESERVED_COLORS
- 8 )
481 X11DRV_PALETTE_mapEGAPixel
[i
- (NB_RESERVED_COLORS
-16)] = color
.pixel
;
484 /* now allocate changeable set */
486 if( !(X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_FIXED
) )
488 int c_min
= 0, c_max
= palette_size
, c_val
;
490 TRACE("Dynamic colormap... \n");
492 /* let's become the first client that actually follows
493 * X guidelines and does binary search...
496 if((pixDynMapping
= (unsigned long*)HeapAlloc(GetProcessHeap(), 0, sizeof(long)*palette_size
)) == NULL
) {
497 WARN("Out of memory while building system palette.\n");
501 /* comment this out if you want to debug palette init */
502 TSXGrabServer(gdi_display
);
504 while( c_max
- c_min
> 0 )
506 c_val
= (c_max
+ c_min
)/2 + (c_max
+ c_min
)%2;
508 if( !TSXAllocColorCells(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, False
,
509 plane_masks
, 0, pixDynMapping
, c_val
) )
513 TSXFreeColors(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, pixDynMapping
, c_val
, 0);
518 if( c_min
> COLOR_max
- NB_RESERVED_COLORS
)
519 c_min
= COLOR_max
- NB_RESERVED_COLORS
;
521 c_min
= (c_min
/2) + (c_min
/2); /* need even set for split palette */
524 if( !TSXAllocColorCells(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, False
,
525 plane_masks
, 0, pixDynMapping
, c_min
) )
527 WARN("Inexplicable failure during colorcell allocation.\n");
531 palette_size
= c_min
+ NB_RESERVED_COLORS
;
533 TSXUngrabServer(gdi_display
);
535 TRACE("adjusted size %i colorcells\n", palette_size
);
537 else if( X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_VIRTUAL
)
539 /* virtual colorspace - ToPhysical takes care of
540 * color translations but we have to allocate full palette
541 * to maintain compatibility
544 TRACE("Virtual colorspace - screendepth %i\n", screen_depth
);
546 else palette_size
= NB_RESERVED_COLORS
; /* system palette only - however we can alloc a bunch
547 * of colors and map to them */
549 TRACE("Shared system palette uses %i colors.\n", palette_size
);
551 /* set gap to account for pixel shortage. It has to be right in the center
552 * of the system palette because otherwise raster ops get screwed. */
554 if( palette_size
>= 256 )
555 { COLOR_gapStart
= 256; COLOR_gapEnd
= -1; }
557 { COLOR_gapStart
= palette_size
/2; COLOR_gapEnd
= 255 - palette_size
/2; }
559 X11DRV_PALETTE_firstFree
= ( palette_size
> NB_RESERVED_COLORS
&&
560 (X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_VIRTUAL
|| !(X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_FIXED
)) )
561 ? NB_RESERVED_COLORS
/2 : -1;
563 COLOR_sysPal
= (PALETTEENTRY
*)HeapAlloc(GetProcessHeap(),0,sizeof(PALETTEENTRY
)*256);
564 if(COLOR_sysPal
== NULL
) {
565 ERR("Can not allocate system palette!\n");
569 /* setup system palette entry <-> pixel mappings and fill in 20 fixed entries */
571 if (screen_depth
<= 8)
573 X11DRV_PALETTE_XPixelToPalette
= HeapAlloc( GetProcessHeap(), 0, 256 * sizeof(int) );
574 if(X11DRV_PALETTE_XPixelToPalette
== NULL
) {
575 ERR("Out of memory: XPixelToPalette!\n");
578 for( i
= 0; i
< 256; i
++ )
579 X11DRV_PALETTE_XPixelToPalette
[i
] = NB_PALETTE_EMPTY_VALUE
;
582 /* for hicolor visuals PaletteToPixel mapping is used to skip
583 * RGB->pixel calculation in X11DRV_PALETTE_ToPhysical().
586 X11DRV_PALETTE_PaletteToXPixel
= (int*)HeapAlloc(GetProcessHeap(),0,sizeof(int)*256);
587 if(X11DRV_PALETTE_PaletteToXPixel
== NULL
) {
588 ERR("Out of memory: PaletteToXPixel!\n");
592 for( i
= j
= 0; i
< 256; i
++ )
594 if( i
>= COLOR_gapStart
&& i
<= COLOR_gapEnd
)
596 X11DRV_PALETTE_PaletteToXPixel
[i
] = NB_PALETTE_EMPTY_VALUE
;
597 COLOR_sysPal
[i
].peFlags
= 0; /* mark as unused */
601 if( i
< NB_RESERVED_COLORS
/2 )
603 X11DRV_PALETTE_PaletteToXPixel
[i
] = sysPixel
[i
];
604 COLOR_sysPal
[i
] = sys_pal_template
[i
];
605 COLOR_sysPal
[i
].peFlags
|= PC_SYS_USED
;
607 else if( i
>= 256 - NB_RESERVED_COLORS
/2 )
609 X11DRV_PALETTE_PaletteToXPixel
[i
] = sysPixel
[(i
+ NB_RESERVED_COLORS
) - 256];
610 COLOR_sysPal
[i
] = sys_pal_template
[(i
+ NB_RESERVED_COLORS
) - 256];
611 COLOR_sysPal
[i
].peFlags
|= PC_SYS_USED
;
613 else if( pixDynMapping
)
614 X11DRV_PALETTE_PaletteToXPixel
[i
] = pixDynMapping
[j
++];
616 X11DRV_PALETTE_PaletteToXPixel
[i
] = i
;
618 TRACE("index %i -> pixel %i\n", i
, X11DRV_PALETTE_PaletteToXPixel
[i
]);
620 if( X11DRV_PALETTE_XPixelToPalette
)
621 X11DRV_PALETTE_XPixelToPalette
[X11DRV_PALETTE_PaletteToXPixel
[i
]] = i
;
624 if( pixDynMapping
) HeapFree(GetProcessHeap(), 0, pixDynMapping
);
629 /***********************************************************************
630 * Colormap Initialization
632 static void X11DRV_PALETTE_FillDefaultColors( const PALETTEENTRY
*sys_pal_template
)
634 /* initialize unused entries to what Windows uses as a color
635 * cube - based on Greg Kreider's code.
639 int red
, no_r
, inc_r
;
640 int green
, no_g
, inc_g
;
641 int blue
, no_b
, inc_b
;
643 if (palette_size
<= NB_RESERVED_COLORS
)
645 while (i
*i
*i
< (palette_size
- NB_RESERVED_COLORS
)) i
++;
646 no_r
= no_g
= no_b
= --i
;
647 if ((no_r
* (no_g
+1) * no_b
) < (palette_size
- NB_RESERVED_COLORS
)) no_g
++;
648 if ((no_r
* no_g
* (no_b
+1)) < (palette_size
- NB_RESERVED_COLORS
)) no_b
++;
649 inc_r
= (255 - NB_COLORCUBE_START_INDEX
)/no_r
;
650 inc_g
= (255 - NB_COLORCUBE_START_INDEX
)/no_g
;
651 inc_b
= (255 - NB_COLORCUBE_START_INDEX
)/no_b
;
653 idx
= X11DRV_PALETTE_firstFree
;
656 for (blue
= NB_COLORCUBE_START_INDEX
; blue
< 256 && idx
; blue
+= inc_b
)
657 for (green
= NB_COLORCUBE_START_INDEX
; green
< 256 && idx
; green
+= inc_g
)
658 for (red
= NB_COLORCUBE_START_INDEX
; red
< 256 && idx
; red
+= inc_r
)
662 if( red
== NB_COLORCUBE_START_INDEX
&& green
== red
&& blue
== green
) continue;
664 COLOR_sysPal
[idx
].peRed
= red
;
665 COLOR_sysPal
[idx
].peGreen
= green
;
666 COLOR_sysPal
[idx
].peBlue
= blue
;
670 if( X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_VIRTUAL
)
672 if (X11DRV_PALETTE_PRed
.max
!= 255) no_r
= (red
* X11DRV_PALETTE_PRed
.max
) / 255;
673 if (X11DRV_PALETTE_PGreen
.max
!= 255) no_g
= (green
* X11DRV_PALETTE_PGreen
.max
) / 255;
674 if (X11DRV_PALETTE_PBlue
.max
!= 255) no_b
= (blue
* X11DRV_PALETTE_PBlue
.max
) / 255;
676 X11DRV_PALETTE_PaletteToXPixel
[idx
] = (no_r
<< X11DRV_PALETTE_PRed
.shift
) | (no_g
<< X11DRV_PALETTE_PGreen
.shift
) | (no_b
<< X11DRV_PALETTE_PBlue
.shift
);
678 else if( !(X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_FIXED
) )
681 color
.pixel
= (X11DRV_PALETTE_PaletteToXPixel
)? X11DRV_PALETTE_PaletteToXPixel
[idx
] : idx
;
682 color
.red
= COLOR_sysPal
[idx
].peRed
<< 8;
683 color
.green
= COLOR_sysPal
[idx
].peGreen
<< 8;
684 color
.blue
= COLOR_sysPal
[idx
].peBlue
<< 8;
685 color
.flags
= DoRed
| DoGreen
| DoBlue
;
686 TSXStoreColor(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &color
);
688 idx
= X11DRV_PALETTE_freeList
[idx
];
691 /* try to fill some entries in the "gap" with
692 * what's already in the colormap - they will be
693 * mappable to but not changeable. */
695 if( COLOR_gapStart
< COLOR_gapEnd
&& X11DRV_PALETTE_XPixelToPalette
)
700 max
= COLOR_max
- (256 - (COLOR_gapEnd
- COLOR_gapStart
));
701 for ( i
= 0, idx
= COLOR_gapStart
; i
< 256 && idx
<= COLOR_gapEnd
; i
++ )
702 if( X11DRV_PALETTE_XPixelToPalette
[i
] == NB_PALETTE_EMPTY_VALUE
)
706 TSXQueryColor(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &xc
);
707 r
= xc
.red
>>8; g
= xc
.green
>>8; b
= xc
.blue
>>8;
709 if( xc
.pixel
< 256 && X11DRV_PALETTE_CheckSysColor( sys_pal_template
, RGB(r
, g
, b
)) &&
710 TSXAllocColor(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &xc
) )
712 X11DRV_PALETTE_XPixelToPalette
[xc
.pixel
] = idx
;
713 X11DRV_PALETTE_PaletteToXPixel
[idx
] = xc
.pixel
;
714 *(COLORREF
*)(COLOR_sysPal
+ idx
) = RGB(r
, g
, b
);
715 COLOR_sysPal
[idx
++].peFlags
|= PC_SYS_USED
;
716 if( --max
<= 0 ) break;
719 COLOR_gapFilled
= idx
- COLOR_gapStart
;
724 /***********************************************************************
725 * X11DRV_IsSolidColor
727 * Check whether 'color' can be represented with a solid color.
729 BOOL
X11DRV_IsSolidColor( COLORREF color
)
732 const PALETTEENTRY
*pEntry
= COLOR_sysPal
;
734 if (color
& 0xff000000) return TRUE
; /* indexed color */
736 if (!color
|| (color
== 0xffffff)) return TRUE
; /* black or white */
738 for (i
= 0; i
< 256 ; i
++, pEntry
++)
740 if( i
< COLOR_gapStart
|| i
> COLOR_gapEnd
)
741 if ((GetRValue(color
) == pEntry
->peRed
) &&
742 (GetGValue(color
) == pEntry
->peGreen
) &&
743 (GetBValue(color
) == pEntry
->peBlue
)) return TRUE
;
749 /***********************************************************************
750 * X11DRV_PALETTE_ToLogical
752 * Return RGB color for given X pixel.
754 COLORREF
X11DRV_PALETTE_ToLogical(int pixel
)
759 /* truecolor visual */
761 if (screen_depth
>= 24) return pixel
;
764 /* check for hicolor visuals first */
766 if ( (X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_FIXED
) && !X11DRV_PALETTE_Graymax
)
768 color
.red
= (pixel
>> X11DRV_PALETTE_LRed
.shift
) & X11DRV_PALETTE_LRed
.max
;
769 if (X11DRV_PALETTE_LRed
.scale
<8)
770 color
.red
= color
.red
<< (8-X11DRV_PALETTE_LRed
.scale
) |
771 color
.red
>> (2*X11DRV_PALETTE_LRed
.scale
-8);
772 color
.green
= (pixel
>> X11DRV_PALETTE_LGreen
.shift
) & X11DRV_PALETTE_LGreen
.max
;
773 if (X11DRV_PALETTE_LGreen
.scale
<8)
774 color
.green
=color
.green
<< (8-X11DRV_PALETTE_LGreen
.scale
) |
775 color
.green
>> (2*X11DRV_PALETTE_LGreen
.scale
-8);
776 color
.blue
= (pixel
>> X11DRV_PALETTE_LBlue
.shift
) & X11DRV_PALETTE_LBlue
.max
;
777 if (X11DRV_PALETTE_LBlue
.scale
<8)
778 color
.blue
= color
.blue
<< (8-X11DRV_PALETTE_LBlue
.scale
) |
779 color
.blue
>> (2*X11DRV_PALETTE_LBlue
.scale
-8);
780 return RGB(color
.red
,color
.green
,color
.blue
);
783 /* check if we can bypass X */
785 if ((screen_depth
<= 8) && (pixel
< 256) &&
786 !(X11DRV_PALETTE_PaletteFlags
& (X11DRV_PALETTE_VIRTUAL
| X11DRV_PALETTE_FIXED
)) ) {
787 return ( *(COLORREF
*)(COLOR_sysPal
+
788 ((X11DRV_PALETTE_XPixelToPalette
)?X11DRV_PALETTE_XPixelToPalette
[pixel
]:pixel
)) ) & 0x00ffffff;
792 TSXQueryColor(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &color
);
793 return RGB(color
.red
>> 8, color
.green
>> 8, color
.blue
>> 8);
797 /***********************************************************************
798 * X11DRV_SysPaletteLookupPixel
800 static int X11DRV_SysPaletteLookupPixel( COLORREF col
, BOOL skipReserved
)
802 int i
, best
= 0, diff
= 0x7fffffff;
805 for( i
= 0; i
< palette_size
&& diff
; i
++ )
807 if( !(COLOR_sysPal
[i
].peFlags
& PC_SYS_USED
) ||
808 (skipReserved
&& COLOR_sysPal
[i
].peFlags
& PC_SYS_RESERVED
) )
811 r
= COLOR_sysPal
[i
].peRed
- GetRValue(col
);
812 g
= COLOR_sysPal
[i
].peGreen
- GetGValue(col
);
813 b
= COLOR_sysPal
[i
].peBlue
- GetBValue(col
);
817 if( r
< diff
) { best
= i
; diff
= r
; }
823 /***********************************************************************
824 * X11DRV_PALETTE_ToPhysical
826 * Return the physical color closest to 'color'.
828 int X11DRV_PALETTE_ToPhysical( X11DRV_PDEVICE
*physDev
, COLORREF color
)
830 DC
*dc
= physDev
? physDev
->dc
: NULL
;
832 HPALETTE hPal
= (dc
)? dc
->hPalette
: GetStockObject(DEFAULT_PALETTE
);
833 unsigned char spec_type
= color
>> 24;
834 PALETTEOBJ
* palPtr
= (PALETTEOBJ
*) GDI_GetObjPtr( hPal
, PALETTE_MAGIC
);
836 /* palPtr can be NULL when DC is being destroyed */
837 if( !palPtr
) return 0;
839 if ( X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_FIXED
)
841 /* there is no colormap limitation; we are going to have to compute
842 * the pixel value from the visual information stored earlier
845 unsigned long red
, green
, blue
;
850 case 1: /* PALETTEINDEX */
852 if( (idx
= color
& 0xffff) >= palPtr
->logpalette
.palNumEntries
)
854 WARN("RGB(%lx) : idx %d is out of bounds, assuming black\n", color
, idx
);
855 GDI_ReleaseObj( hPal
);
859 if( palPtr
->mapping
)
861 int ret
= palPtr
->mapping
[idx
];
862 GDI_ReleaseObj( hPal
);
865 color
= *(COLORREF
*)(palPtr
->logpalette
.palPalEntry
+ idx
);
870 /* fall through to RGB */
873 if( dc
&& (dc
->bitsPerPixel
== 1) )
875 GDI_ReleaseObj( hPal
);
876 return (((color
>> 16) & 0xff) +
877 ((color
>> 8) & 0xff) + (color
& 0xff) > 255*3/2) ? 1 : 0;
882 red
= GetRValue(color
); green
= GetGValue(color
); blue
= GetBValue(color
);
884 if (X11DRV_PALETTE_Graymax
)
886 /* grayscale only; return scaled value */
887 GDI_ReleaseObj( hPal
);
888 return ( (red
* 30 + green
* 59 + blue
* 11) * X11DRV_PALETTE_Graymax
) / 25500;
892 /* scale each individually and construct the TrueColor pixel value */
893 if (X11DRV_PALETTE_PRed
.scale
< 8)
894 red
= red
>> (8-X11DRV_PALETTE_PRed
.scale
);
895 else if (X11DRV_PALETTE_PRed
.scale
> 8)
896 red
= red
<< (X11DRV_PALETTE_PRed
.scale
-8) |
897 red
>> (16-X11DRV_PALETTE_PRed
.scale
);
898 if (X11DRV_PALETTE_PGreen
.scale
< 8)
899 green
= green
>> (8-X11DRV_PALETTE_PGreen
.scale
);
900 else if (X11DRV_PALETTE_PGreen
.scale
> 8)
901 green
= green
<< (X11DRV_PALETTE_PGreen
.scale
-8) |
902 green
>> (16-X11DRV_PALETTE_PGreen
.scale
);
903 if (X11DRV_PALETTE_PBlue
.scale
< 8)
904 blue
= blue
>> (8-X11DRV_PALETTE_PBlue
.scale
);
905 else if (X11DRV_PALETTE_PBlue
.scale
> 8)
906 blue
= blue
<< (X11DRV_PALETTE_PBlue
.scale
-8) |
907 blue
>> (16-X11DRV_PALETTE_PBlue
.scale
);
909 GDI_ReleaseObj( hPal
);
910 return (red
<< X11DRV_PALETTE_PRed
.shift
) | (green
<< X11DRV_PALETTE_PGreen
.shift
) | (blue
<< X11DRV_PALETTE_PBlue
.shift
);
916 if( !palPtr
->mapping
)
917 WARN("Palette %04x is not realized\n", dc
->hPalette
);
919 switch(spec_type
) /* we have to peruse DC and system palette */
923 /* fall through to RGB */
926 if( dc
&& (dc
->bitsPerPixel
== 1) )
928 GDI_ReleaseObj( hPal
);
929 return (((color
>> 16) & 0xff) +
930 ((color
>> 8) & 0xff) + (color
& 0xff) > 255*3/2) ? 1 : 0;
933 index
= X11DRV_SysPaletteLookupPixel( color
, FALSE
);
934 if (X11DRV_PALETTE_PaletteToXPixel
) index
= X11DRV_PALETTE_PaletteToXPixel
[index
];
936 /* TRACE(palette,"RGB(%lx) -> pixel %i\n", color, index);
939 case 1: /* PALETTEINDEX */
940 index
= color
& 0xffff;
942 if( index
>= palPtr
->logpalette
.palNumEntries
)
943 WARN("RGB(%lx) : index %i is out of bounds\n", color
, index
);
944 else if( palPtr
->mapping
) index
= palPtr
->mapping
[index
];
946 /* TRACE(palette,"PALETTEINDEX(%04x) -> pixel %i\n", (WORD)color, index);
949 case 2: /* PALETTERGB */
950 index
= GetNearestPaletteIndex( hPal
, color
);
951 if (palPtr
->mapping
) index
= palPtr
->mapping
[index
];
952 /* TRACE(palette,"PALETTERGB(%lx) -> pixel %i\n", color, index);
958 GDI_ReleaseObj( hPal
);
962 /***********************************************************************
963 * X11DRV_PALETTE_LookupSystemXPixel
965 static int X11DRV_PALETTE_LookupSystemXPixel(COLORREF col
)
967 int i
, best
= 0, diff
= 0x7fffffff;
968 int size
= palette_size
;
971 for( i
= 0; i
< size
&& diff
; i
++ )
973 if( i
== NB_RESERVED_COLORS
/2 )
975 int newi
= size
- NB_RESERVED_COLORS
/2;
979 r
= COLOR_sysPal
[i
].peRed
- GetRValue(col
);
980 g
= COLOR_sysPal
[i
].peGreen
- GetGValue(col
);
981 b
= COLOR_sysPal
[i
].peBlue
- GetBValue(col
);
985 if( r
< diff
) { best
= i
; diff
= r
; }
988 return (X11DRV_PALETTE_PaletteToXPixel
)? X11DRV_PALETTE_PaletteToXPixel
[best
] : best
;
991 /***********************************************************************
992 * X11DRV_PALETTE_FormatSystemPalette
994 static void X11DRV_PALETTE_FormatSystemPalette(void)
996 /* Build free list so we'd have an easy way to find
997 * out if there are any available colorcells.
1000 int i
, j
= X11DRV_PALETTE_firstFree
= NB_RESERVED_COLORS
/2;
1002 COLOR_sysPal
[j
].peFlags
= 0;
1003 for( i
= NB_RESERVED_COLORS
/2 + 1 ; i
< 256 - NB_RESERVED_COLORS
/2 ; i
++ )
1004 if( i
< COLOR_gapStart
|| i
> COLOR_gapEnd
)
1006 COLOR_sysPal
[i
].peFlags
= 0; /* unused tag */
1007 X11DRV_PALETTE_freeList
[j
] = i
; /* next */
1010 X11DRV_PALETTE_freeList
[j
] = 0;
1013 /***********************************************************************
1014 * X11DRV_PALETTE_CheckSysColor
1016 static BOOL
X11DRV_PALETTE_CheckSysColor( const PALETTEENTRY
*sys_pal_template
, COLORREF c
)
1019 for( i
= 0; i
< NB_RESERVED_COLORS
; i
++ )
1020 if( c
== (*(COLORREF
*)(sys_pal_template
+ i
) & 0x00ffffff) )
1026 /***********************************************************************
1027 * X11DRV_LookupSysPaletteExact
1029 static int X11DRV_LookupSysPaletteExact( COLORREF col
)
1032 BYTE r
= GetRValue(col
), g
= GetGValue(col
), b
= GetBValue(col
);
1033 for( i
= 0; i
< palette_size
; i
++ )
1035 if( COLOR_sysPal
[i
].peFlags
& PC_SYS_USED
) /* skips gap */
1036 if( COLOR_sysPal
[i
].peRed
== r
&&
1037 COLOR_sysPal
[i
].peGreen
== g
&&
1038 COLOR_sysPal
[i
].peBlue
== b
)
1045 /***********************************************************************
1046 * X11DRV_PALETTE_SetMapping
1048 * Set the color-mapping table for selected palette.
1049 * Return number of entries which mapping has changed.
1051 static UINT
X11DRV_PALETTE_SetMapping( PALETTEOBJ
* palPtr
, UINT uStart
, UINT uNum
, BOOL mapOnly
)
1054 int prevMapping
= (palPtr
->mapping
) ? 1 : 0;
1059 /* reset dynamic system palette entries */
1061 if( !mapOnly
&& X11DRV_PALETTE_firstFree
!= -1)
1062 X11DRV_PALETTE_FormatSystemPalette();
1064 /* initialize palette mapping table */
1066 mapping
= HeapReAlloc( GetProcessHeap(), 0, palPtr
->mapping
,
1067 sizeof(int)*palPtr
->logpalette
.palNumEntries
);
1068 if(mapping
== NULL
) {
1069 ERR("Can not allocate new mapping -- memory exausted!\n");
1072 palPtr
->mapping
= mapping
;
1074 if (uStart
>= palPtr
->logpalette
.palNumEntries
) return 0;
1076 if (uStart
+ uNum
> palPtr
->logpalette
.palNumEntries
)
1077 uNum
= palPtr
->logpalette
.palNumEntries
- uStart
;
1079 for( uNum
+= uStart
; uStart
< uNum
; uStart
++ )
1084 switch( palPtr
->logpalette
.palPalEntry
[uStart
].peFlags
& 0x07 )
1086 case PC_EXPLICIT
: /* palette entries are indices into system palette */
1087 index
= *(WORD
*)(palPtr
->logpalette
.palPalEntry
+ uStart
);
1088 if( index
> 255 || (index
>= COLOR_gapStart
&& index
<= COLOR_gapEnd
) )
1090 WARN("PC_EXPLICIT: idx %d out of system palette, assuming black.\n", index
);
1095 case PC_RESERVED
: /* forbid future mappings to this entry */
1096 flag
|= PC_SYS_RESERVED
;
1099 default: /* try to collapse identical colors */
1100 index
= X11DRV_LookupSysPaletteExact(*(COLORREF
*)(palPtr
->logpalette
.palPalEntry
+ uStart
));
1105 if( X11DRV_PALETTE_firstFree
> 0 && !(X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_FIXED
) )
1108 index
= X11DRV_PALETTE_firstFree
; /* ought to be available */
1109 X11DRV_PALETTE_firstFree
= X11DRV_PALETTE_freeList
[index
];
1111 color
.pixel
= (X11DRV_PALETTE_PaletteToXPixel
) ? X11DRV_PALETTE_PaletteToXPixel
[index
] : index
;
1112 color
.red
= palPtr
->logpalette
.palPalEntry
[uStart
].peRed
<< 8;
1113 color
.green
= palPtr
->logpalette
.palPalEntry
[uStart
].peGreen
<< 8;
1114 color
.blue
= palPtr
->logpalette
.palPalEntry
[uStart
].peBlue
<< 8;
1115 color
.flags
= DoRed
| DoGreen
| DoBlue
;
1116 TSXStoreColor(gdi_display
, X11DRV_PALETTE_PaletteXColormap
, &color
);
1118 COLOR_sysPal
[index
] = palPtr
->logpalette
.palPalEntry
[uStart
];
1119 COLOR_sysPal
[index
].peFlags
= flag
;
1120 X11DRV_PALETTE_freeList
[index
] = 0;
1122 if( X11DRV_PALETTE_PaletteToXPixel
) index
= X11DRV_PALETTE_PaletteToXPixel
[index
];
1125 else if ( X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_VIRTUAL
)
1127 index
= X11DRV_PALETTE_ToPhysical( NULL
, 0x00ffffff &
1128 *(COLORREF
*)(palPtr
->logpalette
.palPalEntry
+ uStart
));
1132 /* we have to map to existing entry in the system palette */
1134 index
= X11DRV_SysPaletteLookupPixel( *(COLORREF
*)(palPtr
->logpalette
.palPalEntry
+ uStart
), TRUE
);
1136 palPtr
->logpalette
.palPalEntry
[uStart
].peFlags
|= PC_SYS_USED
;
1138 if( X11DRV_PALETTE_PaletteToXPixel
) index
= X11DRV_PALETTE_PaletteToXPixel
[index
];
1142 if( !prevMapping
|| palPtr
->mapping
[uStart
] != index
) iRemapped
++;
1143 palPtr
->mapping
[uStart
] = index
;
1145 TRACE("entry %i (%lx) -> pixel %i\n", uStart
,
1146 *(COLORREF
*)(palPtr
->logpalette
.palPalEntry
+ uStart
), index
);
1152 /***********************************************************************
1153 * GetSystemPaletteEntries (X11DRV.@)
1155 UINT
X11DRV_GetSystemPaletteEntries( X11DRV_PDEVICE
*physDev
, UINT start
, UINT count
,
1156 LPPALETTEENTRY entries
)
1160 if (!entries
) return palette_size
;
1161 if (start
>= palette_size
) return 0;
1162 if (start
+ count
>= palette_size
) count
= palette_size
- start
;
1164 for (i
= 0; i
< count
; i
++)
1166 entries
[i
].peRed
= COLOR_sysPal
[start
+ i
].peRed
;
1167 entries
[i
].peGreen
= COLOR_sysPal
[start
+ i
].peGreen
;
1168 entries
[i
].peBlue
= COLOR_sysPal
[start
+ i
].peBlue
;
1169 entries
[i
].peFlags
= 0;
1170 TRACE("\tidx(%02x) -> RGB(%08lx)\n", start
+ i
, *(COLORREF
*)(entries
+ i
) );
1176 /***********************************************************************
1177 * GetNearestColor (X11DRV.@)
1179 COLORREF
X11DRV_GetNearestColor( X11DRV_PDEVICE
*physDev
, COLORREF color
)
1181 unsigned char spec_type
= color
>> 24;
1184 if (!palette_size
) return color
;
1186 if (spec_type
== 1 || spec_type
== 2)
1188 /* we need logical palette for PALETTERGB and PALETTEINDEX colorrefs */
1192 HPALETTE hpal
= GetCurrentObject( physDev
->hdc
, OBJ_PAL
);
1194 if (!hpal
) hpal
= GetStockObject( DEFAULT_PALETTE
);
1196 if (spec_type
== 2) /* PALETTERGB */
1197 index
= GetNearestPaletteIndex( hpal
, color
);
1198 else /* PALETTEINDEX */
1199 index
= LOWORD(color
);
1201 if (!GetPaletteEntries( hpal
, index
, 1, &entry
))
1203 WARN("RGB(%lx) : idx %d is out of bounds, assuming NULL\n", color
, index
);
1204 if (!GetPaletteEntries( hpal
, 0, 1, &entry
)) return CLR_INVALID
;
1206 color
= RGB( entry
.peRed
, entry
.peGreen
, entry
.peBlue
);
1208 color
&= 0x00ffffff;
1209 nearest
= (0x00ffffff & *(COLORREF
*)(COLOR_sysPal
+ X11DRV_SysPaletteLookupPixel(color
, FALSE
)));
1211 TRACE("(%06lx): returning %06lx\n", color
, nearest
);
1216 /***********************************************************************
1217 * RealizePalette (X11DRV.@)
1219 UINT
X11DRV_RealizePalette( X11DRV_PDEVICE
*physDev
, HPALETTE hpal
, BOOL primary
)
1224 if (!(palPtr
= GDI_GetObjPtr( hpal
, PALETTE_MAGIC
))) return 0;
1225 ret
= X11DRV_PALETTE_SetMapping( palPtr
, 0, palPtr
->logpalette
.palNumEntries
, !primary
);
1226 GDI_ReleaseObj( hpal
);
1231 /***********************************************************************
1232 * RealizeDefaultPalette (X11DRV.@)
1234 UINT
X11DRV_RealizeDefaultPalette( X11DRV_PDEVICE
*physDev
)
1236 DC
*dc
= physDev
->dc
;
1239 if (palette_size
&& !(dc
->flags
& DC_MEMORY
))
1241 PALETTEOBJ
* palPtr
= GDI_GetObjPtr( GetStockObject(DEFAULT_PALETTE
), PALETTE_MAGIC
);
1244 /* lookup is needed to account for SetSystemPaletteUse() stuff */
1247 for( i
= 0; i
< 20; i
++ )
1249 index
= X11DRV_PALETTE_LookupSystemXPixel(*(COLORREF
*)(palPtr
->logpalette
.palPalEntry
+ i
));
1250 /* mapping is allocated in COLOR_InitPalette() */
1251 if( index
!= palPtr
->mapping
[i
] )
1253 palPtr
->mapping
[i
]=index
;
1257 GDI_ReleaseObj( GetStockObject(DEFAULT_PALETTE
) );