itss: Use FIELD_OFFSET to calculate the size of a struct with variable length array.
[wine] / dlls / winex11.drv / palette.c
1 /*
2  * X11DRV OEM bitmap objects
3  *
4  * Copyright 1994, 1995 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22
23 #include <stdarg.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "windef.h"
28 #include "winbase.h"
29 #include "x11drv.h"
30 #include "wine/debug.h"
31
32 WINE_DEFAULT_DEBUG_CHANNEL(palette);
33
34 /* Palette indexed mode:
35  *      logical palette -> mapping -> pixel
36  *
37  *
38  * Windows needs contiguous color space ( from 0 to n ) but
39  * it is possible only with the private colormap. Otherwise we
40  * have to map DC palette indices to real pixel values. With
41  * private colormaps it boils down to the identity mapping. The
42  * other special case is when we have a fixed color visual with
43  * the screendepth > 8 - we abandon palette mappings altogether
44  * because pixel values can be calculated without X server
45  * assistance.
46  */
47
48 #define NB_RESERVED_COLORS     20   /* number of fixed colors in system palette */
49
50 #define PC_SYS_USED            0x80 /* palentry is used (both system and logical) */
51 #define PC_SYS_RESERVED        0x40 /* system palentry is not to be mapped to */
52
53 static PALETTEENTRY *COLOR_sysPal; /* current system palette */
54
55 static int COLOR_gapStart = 256;
56 static int COLOR_gapEnd = -1;
57 static int COLOR_gapFilled = 0;
58
59 UINT16   X11DRV_PALETTE_PaletteFlags     = 0;
60
61 /* initialize to zero to handle abortive X11DRV_PALETTE_VIRTUAL visuals */
62 ColorShifts X11DRV_PALETTE_default_shifts = { {0,0,0,}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0} };
63 static int X11DRV_PALETTE_Graymax        = 0;
64
65 static int palette_size;
66
67 /* First free dynamic color cell, 0 = full palette, -1 = fixed palette */
68 static int           X11DRV_PALETTE_firstFree = 0;
69 static unsigned char X11DRV_PALETTE_freeList[256];
70
71 static XContext palette_context;  /* X context to associate a color mapping to a palette */
72
73 static CRITICAL_SECTION palette_cs;
74 static CRITICAL_SECTION_DEBUG critsect_debug =
75 {
76     0, 0, &palette_cs,
77     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
78       0, 0, { (DWORD_PTR)(__FILE__ ": palette_cs") }
79 };
80 static CRITICAL_SECTION palette_cs = { &critsect_debug, -1, 0, 0, 0, 0 };
81
82 /**********************************************************************/
83
84    /* Map an EGA index (0..15) to a pixel value in the system color space.  */
85
86 int X11DRV_PALETTE_mapEGAPixel[16];
87
88 /**********************************************************************/
89
90 #define NB_COLORCUBE_START_INDEX        63
91 #define NB_PALETTE_EMPTY_VALUE          -1
92
93 /* Maps entry in the system palette to X pixel value */
94 int *X11DRV_PALETTE_PaletteToXPixel = NULL;
95
96 /* Maps pixel to the entry in the system palette */
97 int *X11DRV_PALETTE_XPixelToPalette = NULL;
98
99 /**********************************************************************/
100
101 static BOOL X11DRV_PALETTE_BuildPrivateMap( const PALETTEENTRY *sys_pal_template );
102 static BOOL X11DRV_PALETTE_BuildSharedMap( const PALETTEENTRY *sys_pal_template );
103 static void X11DRV_PALETTE_FillDefaultColors( const PALETTEENTRY *sys_pal_template );
104 static void X11DRV_PALETTE_FormatSystemPalette(void);
105 static BOOL X11DRV_PALETTE_CheckSysColor( const PALETTEENTRY *sys_pal_template, COLORREF c);
106 static int X11DRV_PALETTE_LookupSystemXPixel(COLORREF col);
107
108
109 /***********************************************************************
110  *           palette_get_mapping
111  */
112 static int *palette_get_mapping( HPALETTE hpal )
113 {
114     int *mapping;
115
116     if (XFindContext( gdi_display, (XID)hpal, palette_context, (char **)&mapping )) mapping = NULL;
117     return mapping;
118 }
119
120
121 /***********************************************************************
122  *           palette_set_mapping
123  */
124 static void palette_set_mapping( HPALETTE hpal, int *mapping )
125 {
126     XSaveContext( gdi_display, (XID)hpal, palette_context, (char *)mapping );
127 }
128
129
130 /***********************************************************************
131  *           COLOR_Init
132  *
133  * Initialize color management.
134  */
135 int X11DRV_PALETTE_Init(void)
136 {
137     int *mapping;
138     PALETTEENTRY sys_pal_template[NB_RESERVED_COLORS];
139
140     TRACE("initializing palette manager...\n");
141
142     palette_context = XUniqueContext();
143     palette_size = default_visual.colormap_size;
144
145     switch(default_visual.class)
146     {
147     case DirectColor:
148         X11DRV_PALETTE_PaletteFlags |= X11DRV_PALETTE_VIRTUAL;
149     case GrayScale:
150     case PseudoColor:
151         if (private_color_map)
152         {
153             XSetWindowAttributes win_attr;
154
155             XFreeColormap( gdi_display, default_colormap );
156             default_colormap = XCreateColormap( gdi_display, root_window,
157                                                 default_visual.visual, AllocAll );
158             if (default_colormap)
159             {
160                 X11DRV_PALETTE_PaletteFlags |= X11DRV_PALETTE_PRIVATE;
161
162                 if( root_window != DefaultRootWindow(gdi_display) )
163                 {
164                     win_attr.colormap = default_colormap;
165                     XChangeWindowAttributes( gdi_display, root_window, CWColormap, &win_attr );
166                 }
167             }
168         }
169         break;
170
171     case StaticGray:
172         X11DRV_PALETTE_PaletteFlags |= X11DRV_PALETTE_FIXED;
173         X11DRV_PALETTE_Graymax = (1 << default_visual.depth)-1;
174         break;
175
176     case TrueColor:
177         X11DRV_PALETTE_PaletteFlags |= X11DRV_PALETTE_VIRTUAL;
178     case StaticColor:
179         X11DRV_PALETTE_PaletteFlags |= X11DRV_PALETTE_FIXED;
180         X11DRV_PALETTE_ComputeColorShifts(&X11DRV_PALETTE_default_shifts, default_visual.red_mask, default_visual.green_mask, default_visual.blue_mask);
181         break;
182     }
183
184     if( X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_VIRTUAL )
185     {
186         palette_size = 0;
187     }
188     else
189     {
190         GetPaletteEntries( GetStockObject(DEFAULT_PALETTE), 0, NB_RESERVED_COLORS, sys_pal_template );
191
192         if ((mapping = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(int) * NB_RESERVED_COLORS )))
193             palette_set_mapping( GetStockObject(DEFAULT_PALETTE), mapping );
194
195         if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_PRIVATE)
196             X11DRV_PALETTE_BuildPrivateMap( sys_pal_template );
197         else
198             X11DRV_PALETTE_BuildSharedMap( sys_pal_template );
199
200         /* Build free list */
201
202         if( X11DRV_PALETTE_firstFree != -1 )
203             X11DRV_PALETTE_FormatSystemPalette();
204
205         X11DRV_PALETTE_FillDefaultColors( sys_pal_template );
206         palette_size = default_visual.colormap_size;
207     }
208
209     return palette_size;
210 }
211
212 /***********************************************************************
213  *              X11DRV_PALETTE_ComputeChannelShift
214  *
215  * Calculate conversion parameters for a given color mask
216  */
217 static void X11DRV_PALETTE_ComputeChannelShift(unsigned long maskbits, ChannelShift *physical, ChannelShift *to_logical)
218 {
219     int i;
220
221     if (maskbits==0)
222     {
223         physical->shift=0;
224         physical->scale=0;
225         physical->max=0;
226         to_logical->shift=0;
227         to_logical->scale=0;
228         to_logical->max=0;
229         return;
230     }
231
232     for(i=0;!(maskbits&1);i++)
233         maskbits >>= 1;
234
235     physical->shift = i;
236     physical->max = maskbits;
237
238     for(i=0;maskbits!=0;i++)
239         maskbits >>= 1;
240     physical->scale = i;
241
242     if (physical->scale>8)
243     {
244         /* On FreeBSD, VNC's default 32bpp mode is bgrabb (ffc00000,3ff800,7ff)!
245          * So we adjust the shifts to also normalize the color fields to
246          * the Win32 standard of 8 bits per color.
247          */
248         to_logical->shift=physical->shift+(physical->scale-8);
249         to_logical->scale=8;
250         to_logical->max=0xff;
251     } else {
252         to_logical->shift=physical->shift;
253         to_logical->scale=physical->scale;
254         to_logical->max=physical->max;
255     }
256 }
257
258 /***********************************************************************
259  *      X11DRV_PALETTE_ComputeColorShifts
260  *
261  * Calculate conversion parameters for a given color
262  */
263 void X11DRV_PALETTE_ComputeColorShifts(ColorShifts *shifts, unsigned long redMask, unsigned long greenMask, unsigned long blueMask)
264 {
265     X11DRV_PALETTE_ComputeChannelShift(redMask, &shifts->physicalRed, &shifts->logicalRed);
266     X11DRV_PALETTE_ComputeChannelShift(greenMask, &shifts->physicalGreen, &shifts->logicalGreen);
267     X11DRV_PALETTE_ComputeChannelShift(blueMask, &shifts->physicalBlue, &shifts->logicalBlue);
268 }
269
270 /***********************************************************************
271  *           X11DRV_PALETTE_BuildPrivateMap
272  *
273  * Allocate colorcells and initialize mapping tables.
274  */
275 static BOOL X11DRV_PALETTE_BuildPrivateMap( const PALETTEENTRY *sys_pal_template )
276 {
277     /* Private colormap - identity mapping */
278
279     XColor color;
280     int i;
281
282     if((COLOR_sysPal = HeapAlloc(GetProcessHeap(), 0, sizeof(PALETTEENTRY)*palette_size)) == NULL) {
283         WARN("Unable to allocate the system palette\n");
284         return FALSE;
285     }
286
287     TRACE("Building private map - %i palette entries\n", palette_size);
288
289       /* Allocate system palette colors */
290
291     for( i=0; i < palette_size; i++ )
292     {
293        if( i < NB_RESERVED_COLORS/2 )
294        {
295          color.red   = sys_pal_template[i].peRed * 65535 / 255;
296          color.green = sys_pal_template[i].peGreen * 65535 / 255;
297          color.blue  = sys_pal_template[i].peBlue * 65535 / 255;
298          COLOR_sysPal[i] = sys_pal_template[i];
299          COLOR_sysPal[i].peFlags |= PC_SYS_USED;
300        }
301        else if( i >= palette_size - NB_RESERVED_COLORS/2 )
302        {
303          int j = NB_RESERVED_COLORS + i - palette_size;
304          color.red   = sys_pal_template[j].peRed * 65535 / 255;
305          color.green = sys_pal_template[j].peGreen * 65535 / 255;
306          color.blue  = sys_pal_template[j].peBlue * 65535 / 255;
307          COLOR_sysPal[i] = sys_pal_template[j];
308          COLOR_sysPal[i].peFlags |= PC_SYS_USED;
309        }
310
311        color.flags = DoRed | DoGreen | DoBlue;
312        color.pixel = i;
313        XStoreColor(gdi_display, default_colormap, &color);
314
315        /* Set EGA mapping if color is from the first or last eight */
316
317        if (i < 8)
318            X11DRV_PALETTE_mapEGAPixel[i] = color.pixel;
319        else if (i >= palette_size - 8 )
320            X11DRV_PALETTE_mapEGAPixel[i - (palette_size - 16)] = color.pixel;
321     }
322
323     X11DRV_PALETTE_XPixelToPalette = X11DRV_PALETTE_PaletteToXPixel = NULL;
324
325     COLOR_gapStart = 256; COLOR_gapEnd = -1;
326
327     X11DRV_PALETTE_firstFree = (palette_size > NB_RESERVED_COLORS)?NB_RESERVED_COLORS/2 : -1;
328
329     return FALSE;
330 }
331
332 /***********************************************************************
333  *           X11DRV_PALETTE_BuildSharedMap
334  *
335  * Allocate colorcells and initialize mapping tables.
336  */
337 static BOOL X11DRV_PALETTE_BuildSharedMap( const PALETTEENTRY *sys_pal_template )
338 {
339    XColor               color;
340    unsigned long        sysPixel[NB_RESERVED_COLORS];
341    unsigned long*       pixDynMapping = NULL;
342    unsigned long        plane_masks[1];
343    int                  i, j, warn = 0;
344    int                  diff, r, g, b, bp = 0, wp = 1;
345    int                  step = 1;
346    unsigned int max = 256;
347    Colormap             defaultCM;
348    XColor               defaultColors[256];
349
350    /* Copy the first bunch of colors out of the default colormap to prevent
351     * colormap flashing as much as possible.  We're likely to get the most
352     * important Window Manager colors, etc in the first 128 colors */
353    defaultCM = DefaultColormap( gdi_display, DefaultScreen(gdi_display) );
354
355    if (copy_default_colors > 256) copy_default_colors = 256;
356    for (i = 0; i < copy_default_colors; i++)
357        defaultColors[i].pixel = (long) i;
358    XQueryColors(gdi_display, defaultCM, &defaultColors[0], copy_default_colors);
359    for (i = 0; i < copy_default_colors; i++)
360        XAllocColor( gdi_display, default_colormap, &defaultColors[i] );
361
362    if (alloc_system_colors > 256) alloc_system_colors = 256;
363    else if (alloc_system_colors < 20) alloc_system_colors = 20;
364    TRACE("%d colors configured.\n", alloc_system_colors);
365
366    TRACE("Building shared map - %i palette entries\n", palette_size);
367
368    /* Be nice and allocate system colors as read-only */
369
370    for( i = 0; i < NB_RESERVED_COLORS; i++ )
371      {
372         color.red   = sys_pal_template[i].peRed * 65535 / 255;
373         color.green = sys_pal_template[i].peGreen * 65535 / 255;
374         color.blue  = sys_pal_template[i].peBlue * 65535 / 255;
375         color.flags = DoRed | DoGreen | DoBlue;
376
377         if (!XAllocColor( gdi_display, default_colormap, &color ))
378         {
379              XColor     best, c;
380
381              if( !warn++ )
382              {
383                   WARN("Not enough colors for the full system palette.\n");
384
385                   bp = BlackPixel(gdi_display, DefaultScreen(gdi_display));
386                   wp = WhitePixel(gdi_display, DefaultScreen(gdi_display));
387
388                   max = 0xffffffff >> (32 - default_visual.depth);
389                   if( max > 256 )
390                   {
391                       step = max/256;
392                       max = 256;
393                   }
394              }
395
396              /* reinit color (XAllocColor() may change it)
397               * and map to the best shared colorcell */
398
399              color.red   = sys_pal_template[i].peRed * 65535 / 255;
400              color.green = sys_pal_template[i].peGreen * 65535 / 255;
401              color.blue  = sys_pal_template[i].peBlue * 65535 / 255;
402
403              best.pixel = best.red = best.green = best.blue = 0;
404              for( c.pixel = 0, diff = 0x7fffffff; c.pixel < max; c.pixel += step )
405              {
406                 XQueryColor(gdi_display, default_colormap, &c);
407                 r = (c.red - color.red)>>8;
408                 g = (c.green - color.green)>>8;
409                 b = (c.blue - color.blue)>>8;
410                 r = r*r + g*g + b*b;
411                 if( r < diff ) { best = c; diff = r; }
412              }
413
414              if( XAllocColor(gdi_display, default_colormap, &best) )
415                  color.pixel = best.pixel;
416              else color.pixel = (i < NB_RESERVED_COLORS/2)? bp : wp;
417         }
418
419         sysPixel[i] = color.pixel;
420
421         TRACE("syscolor(%x) -> pixel %i\n", *(const COLORREF*)(sys_pal_template+i),
422               (int)color.pixel);
423
424         /* Set EGA mapping if color in the first or last eight */
425
426         if (i < 8)
427             X11DRV_PALETTE_mapEGAPixel[i] = color.pixel;
428         else if (i >= NB_RESERVED_COLORS - 8 )
429             X11DRV_PALETTE_mapEGAPixel[i - (NB_RESERVED_COLORS-16)] = color.pixel;
430      }
431
432    /* now allocate changeable set */
433
434    if( !(X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_FIXED) )
435      {
436         int c_min = 0, c_max = palette_size, c_val;
437
438         TRACE("Dynamic colormap...\n");
439
440         /* let's become the first client that actually follows
441          * X guidelines and does binary search...
442          */
443
444         if((pixDynMapping = HeapAlloc(GetProcessHeap(), 0, sizeof(long)*palette_size)) == NULL) {
445             WARN("Out of memory while building system palette.\n");
446             return FALSE;
447         }
448
449         /* comment this out if you want to debug palette init */
450         XGrabServer(gdi_display);
451
452         while( c_max - c_min > 0 )
453           {
454              c_val = (c_max + c_min)/2 + (c_max + c_min)%2;
455
456              if( !XAllocColorCells(gdi_display, default_colormap, False,
457                                    plane_masks, 0, pixDynMapping, c_val) )
458                  c_max = c_val - 1;
459              else
460                {
461                  XFreeColors(gdi_display, default_colormap, pixDynMapping, c_val, 0);
462                  c_min = c_val;
463                }
464           }
465
466         if( c_min > alloc_system_colors - NB_RESERVED_COLORS)
467             c_min = alloc_system_colors - NB_RESERVED_COLORS;
468
469         c_min = (c_min/2) + (c_min/2);          /* need even set for split palette */
470
471         if( c_min > 0 )
472           if( !XAllocColorCells(gdi_display, default_colormap, False,
473                                 plane_masks, 0, pixDynMapping, c_min) )
474             {
475               WARN("Inexplicable failure during colorcell allocation.\n");
476               c_min = 0;
477             }
478
479         palette_size = c_min + NB_RESERVED_COLORS;
480
481         XUngrabServer(gdi_display);
482
483         TRACE("adjusted size %i colorcells\n", palette_size);
484      }
485    else if( X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_VIRTUAL )
486         {
487           /* virtual colorspace - ToPhysical takes care of
488            * color translations but we have to allocate full palette
489            * to maintain compatibility
490            */
491           palette_size = 256;
492           TRACE("Virtual colorspace - screendepth %i\n", default_visual.depth);
493         }
494    else palette_size = NB_RESERVED_COLORS;      /* system palette only - however we can alloc a bunch
495                                          * of colors and map to them */
496
497    TRACE("Shared system palette uses %i colors.\n", palette_size);
498
499    /* set gap to account for pixel shortage. It has to be right in the center
500     * of the system palette because otherwise raster ops get screwed. */
501
502    if( palette_size >= 256 )
503      { COLOR_gapStart = 256; COLOR_gapEnd = -1; }
504    else
505      { COLOR_gapStart = palette_size/2; COLOR_gapEnd = 255 - palette_size/2; }
506
507    X11DRV_PALETTE_firstFree = ( palette_size > NB_RESERVED_COLORS &&
508                       (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_VIRTUAL || !(X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_FIXED)) )
509                      ? NB_RESERVED_COLORS/2 : -1;
510
511    COLOR_sysPal = HeapAlloc(GetProcessHeap(),0,sizeof(PALETTEENTRY)*256);
512    if(COLOR_sysPal == NULL) {
513        ERR("Unable to allocate the system palette!\n");
514        HeapFree(GetProcessHeap(), 0, pixDynMapping);
515        return FALSE;
516    }
517
518    /* setup system palette entry <-> pixel mappings and fill in 20 fixed entries */
519
520    if (default_visual.depth <= 8)
521    {
522        X11DRV_PALETTE_XPixelToPalette = HeapAlloc( GetProcessHeap(), 0, 256 * sizeof(int) );
523        if(X11DRV_PALETTE_XPixelToPalette == NULL) {
524            ERR("Out of memory: XPixelToPalette!\n");
525            HeapFree(GetProcessHeap(), 0, pixDynMapping);
526            return FALSE;
527        }
528        for( i = 0; i < 256; i++ )
529            X11DRV_PALETTE_XPixelToPalette[i] = NB_PALETTE_EMPTY_VALUE;
530    }
531
532    /* for hicolor visuals PaletteToPixel mapping is used to skip
533     * RGB->pixel calculation in X11DRV_PALETTE_ToPhysical().
534     */
535
536    X11DRV_PALETTE_PaletteToXPixel = HeapAlloc(GetProcessHeap(),0,sizeof(int)*256);
537    if(X11DRV_PALETTE_PaletteToXPixel == NULL) {
538        ERR("Out of memory: PaletteToXPixel!\n");
539        HeapFree(GetProcessHeap(), 0, pixDynMapping);
540        return FALSE;
541    }
542
543    for( i = j = 0; i < 256; i++ )
544    {
545       if( i >= COLOR_gapStart && i <= COLOR_gapEnd )
546       {
547          X11DRV_PALETTE_PaletteToXPixel[i] = NB_PALETTE_EMPTY_VALUE;
548          COLOR_sysPal[i].peFlags = 0;   /* mark as unused */
549          continue;
550       }
551
552       if( i < NB_RESERVED_COLORS/2 )
553       {
554         X11DRV_PALETTE_PaletteToXPixel[i] = sysPixel[i];
555         COLOR_sysPal[i] = sys_pal_template[i];
556         COLOR_sysPal[i].peFlags |= PC_SYS_USED;
557       }
558       else if( i >= 256 - NB_RESERVED_COLORS/2 )
559       {
560         X11DRV_PALETTE_PaletteToXPixel[i] = sysPixel[(i + NB_RESERVED_COLORS) - 256];
561         COLOR_sysPal[i] = sys_pal_template[(i + NB_RESERVED_COLORS) - 256];
562         COLOR_sysPal[i].peFlags |= PC_SYS_USED;
563       }
564       else if( pixDynMapping )
565              X11DRV_PALETTE_PaletteToXPixel[i] = pixDynMapping[j++];
566            else
567              X11DRV_PALETTE_PaletteToXPixel[i] = i;
568
569       TRACE("index %i -> pixel %i\n", i, X11DRV_PALETTE_PaletteToXPixel[i]);
570
571       if( X11DRV_PALETTE_XPixelToPalette )
572           X11DRV_PALETTE_XPixelToPalette[X11DRV_PALETTE_PaletteToXPixel[i]] = i;
573    }
574
575    HeapFree(GetProcessHeap(), 0, pixDynMapping);
576
577    return TRUE;
578 }
579
580 /***********************************************************************
581  *      Colormap Initialization
582  */
583 static void X11DRV_PALETTE_FillDefaultColors( const PALETTEENTRY *sys_pal_template )
584 {
585  /* initialize unused entries to what Windows uses as a color
586   * cube - based on Greg Kreider's code.
587   */
588
589   int i = 0, idx = 0;
590   int red, no_r, inc_r;
591   int green, no_g, inc_g;
592   int blue, no_b, inc_b;
593
594   if (palette_size <= NB_RESERVED_COLORS)
595         return;
596   while (i*i*i < (palette_size - NB_RESERVED_COLORS)) i++;
597   no_r = no_g = no_b = --i;
598   if ((no_r * (no_g+1) * no_b) < (palette_size - NB_RESERVED_COLORS)) no_g++;
599   if ((no_r * no_g * (no_b+1)) < (palette_size - NB_RESERVED_COLORS)) no_b++;
600   inc_r = (255 - NB_COLORCUBE_START_INDEX)/no_r;
601   inc_g = (255 - NB_COLORCUBE_START_INDEX)/no_g;
602   inc_b = (255 - NB_COLORCUBE_START_INDEX)/no_b;
603
604   idx = X11DRV_PALETTE_firstFree;
605
606   if( idx != -1 )
607     for (blue = NB_COLORCUBE_START_INDEX; blue < 256 && idx; blue += inc_b )
608      for (green = NB_COLORCUBE_START_INDEX; green < 256 && idx; green += inc_g )
609       for (red = NB_COLORCUBE_START_INDEX; red < 256 && idx; red += inc_r )
610       {
611          /* weird but true */
612
613          if( red == NB_COLORCUBE_START_INDEX && green == red && blue == green ) continue;
614
615          COLOR_sysPal[idx].peRed = red;
616          COLOR_sysPal[idx].peGreen = green;
617          COLOR_sysPal[idx].peBlue = blue;
618
619          /* set X color */
620
621          if( X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_VIRTUAL )
622          {
623             ColorShifts *shifts = &X11DRV_PALETTE_default_shifts;
624             if (shifts->physicalRed.max != 255) no_r = (red * shifts->physicalRed.max) / 255;
625             if (shifts->physicalGreen.max != 255) no_g = (green * shifts->physicalGreen.max) / 255;
626             if (shifts->physicalBlue.max != 255) no_b = (blue * shifts->physicalBlue.max) / 255;
627
628             X11DRV_PALETTE_PaletteToXPixel[idx] = (no_r << shifts->physicalRed.shift) | (no_g << shifts->physicalGreen.shift) | (no_b << shifts->physicalBlue.shift);
629          }
630          else if( !(X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_FIXED) )
631          {
632            XColor color;
633            color.pixel = (X11DRV_PALETTE_PaletteToXPixel)? X11DRV_PALETTE_PaletteToXPixel[idx] : idx;
634            color.red = COLOR_sysPal[idx].peRed << 8;
635            color.green = COLOR_sysPal[idx].peGreen << 8;
636            color.blue =  COLOR_sysPal[idx].peBlue << 8;
637            color.flags = DoRed | DoGreen | DoBlue;
638            XStoreColor(gdi_display, default_colormap, &color);
639          }
640          idx = X11DRV_PALETTE_freeList[idx];
641       }
642
643   /* try to fill some entries in the "gap" with
644    * what's already in the colormap - they will be
645    * mappable to but not changeable. */
646
647   if( COLOR_gapStart < COLOR_gapEnd && X11DRV_PALETTE_XPixelToPalette )
648   {
649     XColor      xc;
650     int         r, g, b, max;
651
652     max = alloc_system_colors - (256 - (COLOR_gapEnd - COLOR_gapStart));
653     for ( i = 0, idx = COLOR_gapStart; i < 256 && idx <= COLOR_gapEnd; i++ )
654       if( X11DRV_PALETTE_XPixelToPalette[i] == NB_PALETTE_EMPTY_VALUE )
655         {
656           xc.pixel = i;
657
658           XQueryColor(gdi_display, default_colormap, &xc);
659           r = xc.red>>8; g = xc.green>>8; b = xc.blue>>8;
660
661           if( xc.pixel < 256 && X11DRV_PALETTE_CheckSysColor( sys_pal_template, RGB(r, g, b)) &&
662               XAllocColor(gdi_display, default_colormap, &xc) )
663           {
664              X11DRV_PALETTE_XPixelToPalette[xc.pixel] = idx;
665              X11DRV_PALETTE_PaletteToXPixel[idx] = xc.pixel;
666            *(COLORREF*)(COLOR_sysPal + idx) = RGB(r, g, b);
667              COLOR_sysPal[idx++].peFlags |= PC_SYS_USED;
668              if( --max <= 0 ) break;
669           }
670         }
671     COLOR_gapFilled = idx - COLOR_gapStart;
672   }
673 }
674
675
676 /***********************************************************************
677  *           X11DRV_IsSolidColor
678  *
679  * Check whether 'color' can be represented with a solid color.
680  */
681 BOOL X11DRV_IsSolidColor( COLORREF color )
682 {
683     int i;
684     const PALETTEENTRY *pEntry = COLOR_sysPal;
685
686     if (color & 0xff000000) return TRUE;  /* indexed color */
687
688     if (!color || (color == 0xffffff)) return TRUE;  /* black or white */
689
690     if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_VIRTUAL) return TRUE;  /* no palette */
691
692     EnterCriticalSection( &palette_cs );
693     for (i = 0; i < palette_size ; i++, pEntry++)
694     {
695         if( i < COLOR_gapStart || i > COLOR_gapEnd )
696             if ((GetRValue(color) == pEntry->peRed) &&
697                 (GetGValue(color) == pEntry->peGreen) &&
698                 (GetBValue(color) == pEntry->peBlue))
699             {
700                 LeaveCriticalSection( &palette_cs );
701                 return TRUE;
702             }
703     }
704     LeaveCriticalSection( &palette_cs );
705     return FALSE;
706 }
707
708
709 /***********************************************************************
710  *           X11DRV_PALETTE_ToLogical
711  *
712  * Return RGB color for given X pixel.
713  */
714 COLORREF X11DRV_PALETTE_ToLogical(X11DRV_PDEVICE *physDev, int pixel)
715 {
716     XColor color;
717
718     /* check for hicolor visuals first */
719
720     if ( (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_FIXED) && !X11DRV_PALETTE_Graymax )
721     {
722          ColorShifts *shifts = &X11DRV_PALETTE_default_shifts;
723
724          if(physDev->color_shifts)
725              shifts = physDev->color_shifts;
726
727          color.red = (pixel >> shifts->logicalRed.shift) & shifts->logicalRed.max;
728          if (shifts->logicalRed.scale<8)
729              color.red=  color.red   << (8-shifts->logicalRed.scale) |
730                          color.red   >> (2*shifts->logicalRed.scale-8);
731          color.green = (pixel >> shifts->logicalGreen.shift) & shifts->logicalGreen.max;
732          if (shifts->logicalGreen.scale<8)
733              color.green=color.green << (8-shifts->logicalGreen.scale) |
734                          color.green >> (2*shifts->logicalGreen.scale-8);
735          color.blue = (pixel >> shifts->logicalBlue.shift) & shifts->logicalBlue.max;
736          if (shifts->logicalBlue.scale<8)
737              color.blue= color.blue  << (8-shifts->logicalBlue.scale)  |
738                          color.blue  >> (2*shifts->logicalBlue.scale-8);
739                  return RGB(color.red,color.green,color.blue);
740     }
741
742     /* check if we can bypass X */
743
744     if ((default_visual.depth <= 8) && (pixel < 256) &&
745         !(X11DRV_PALETTE_PaletteFlags & (X11DRV_PALETTE_VIRTUAL | X11DRV_PALETTE_FIXED)) ) {
746         COLORREF ret;
747         EnterCriticalSection( &palette_cs );
748         ret = *(COLORREF *)(COLOR_sysPal + (X11DRV_PALETTE_XPixelToPalette ? X11DRV_PALETTE_XPixelToPalette[pixel]: pixel)) & 0x00ffffff;
749         LeaveCriticalSection( &palette_cs );
750         return ret;
751     }
752
753     color.pixel = pixel;
754     XQueryColor(gdi_display, default_colormap, &color);
755     return RGB(color.red >> 8, color.green >> 8, color.blue >> 8);
756 }
757
758
759 /***********************************************************************
760  *           X11DRV_SysPaletteLookupPixel
761  */
762 static int X11DRV_SysPaletteLookupPixel( COLORREF col, BOOL skipReserved )
763 {
764     int i, best = 0, diff = 0x7fffffff;
765     int r,g,b;
766
767     for( i = 0; i < palette_size && diff ; i++ )
768     {
769         if( !(COLOR_sysPal[i].peFlags & PC_SYS_USED) ||
770             (skipReserved && COLOR_sysPal[i].peFlags  & PC_SYS_RESERVED) )
771             continue;
772
773         r = COLOR_sysPal[i].peRed - GetRValue(col);
774         g = COLOR_sysPal[i].peGreen - GetGValue(col);
775         b = COLOR_sysPal[i].peBlue - GetBValue(col);
776
777         r = r*r + g*g + b*b;
778
779         if( r < diff ) { best = i; diff = r; }
780     }
781     return best;
782 }
783
784  
785 static inline BOOL colour_is_brighter(RGBQUAD c1, RGBQUAD c2)
786 {
787     return (c1.rgbRed * c1.rgbRed + c1.rgbGreen * c1.rgbGreen + c1.rgbBlue * c1.rgbBlue) > 
788         (c2.rgbRed * c2.rgbRed + c2.rgbGreen * c2.rgbGreen + c2.rgbBlue * c2.rgbBlue);
789 }
790
791 /***********************************************************************
792  *           X11DRV_PALETTE_GetColor
793  *
794  * Resolve PALETTEINDEX/PALETTERGB/DIBINDEX COLORREFs to an RGB COLORREF.
795  */
796 COLORREF X11DRV_PALETTE_GetColor( X11DRV_PDEVICE *physDev, COLORREF color )
797 {
798     HPALETTE             hPal = GetCurrentObject(physDev->dev.hdc, OBJ_PAL );
799     PALETTEENTRY         entry;
800
801     if (color & (1 << 24))  /* PALETTEINDEX */
802     {
803         unsigned int idx = LOWORD(color);
804         if (!GetPaletteEntries( hPal, idx, 1, &entry )) return 0;
805         return RGB( entry.peRed, entry.peGreen, entry.peBlue );
806     }
807
808     if (color >> 24 == 2)  /* PALETTERGB */
809     {
810         unsigned int idx = GetNearestPaletteIndex( hPal, color & 0xffffff );
811         if (!GetPaletteEntries( hPal, idx, 1, &entry )) return 0;
812         return RGB( entry.peRed, entry.peGreen, entry.peBlue );
813     }
814
815     if (color >> 16 == 0x10ff)  /* DIBINDEX */
816         return 0;
817
818     return color & 0xffffff;
819 }
820
821 /***********************************************************************
822  *           X11DRV_PALETTE_ToPhysical
823  *
824  * Return the physical color closest to 'color'.
825  */
826 int X11DRV_PALETTE_ToPhysical( X11DRV_PDEVICE *physDev, COLORREF color )
827 {
828     WORD                 index = 0;
829     HPALETTE             hPal = GetCurrentObject(physDev->dev.hdc, OBJ_PAL );
830     int *mapping = palette_get_mapping( hPal );
831     PALETTEENTRY entry;
832     ColorShifts *shifts = &X11DRV_PALETTE_default_shifts;
833
834     if(physDev->color_shifts)
835         shifts = physDev->color_shifts;
836
837     if ( X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_FIXED )
838     {
839         /* there is no colormap limitation; we are going to have to compute
840          * the pixel value from the visual information stored earlier
841          */
842         unsigned long red, green, blue;
843
844         if (color & (1 << 24))  /* PALETTEINDEX */
845         {
846             unsigned int idx = LOWORD( color );
847
848             if (!GetPaletteEntries( hPal, idx, 1, &entry ))
849             {
850                 WARN("PALETTEINDEX(%x) : idx %d is out of bounds, assuming black\n", color, idx);
851                 return 0;
852             }
853             if (mapping) return mapping[idx];
854             red   = entry.peRed;
855             green = entry.peGreen;
856             blue  = entry.peBlue;
857         }
858         else if (color >> 16 == 0x10ff)  /* DIBINDEX */
859         {
860             return 0;
861         }
862         else  /* RGB */
863         {
864             if (physDev->depth == 1)
865                 return (((color >> 16) & 0xff) +
866                         ((color >> 8) & 0xff) + (color & 0xff) > 255*3/2) ? 1 : 0;
867             red   = GetRValue( color );
868             green = GetGValue( color );
869             blue  = GetBValue( color );
870         }
871
872         if (X11DRV_PALETTE_Graymax)
873         {
874             /* grayscale only; return scaled value */
875             return ( (red * 30 + green * 59 + blue * 11) * X11DRV_PALETTE_Graymax) / 25500;
876         }
877         else
878         {
879             /* scale each individually and construct the TrueColor pixel value */
880             if (shifts->physicalRed.scale < 8)
881                 red = red >> (8-shifts->physicalRed.scale);
882             else if (shifts->physicalRed.scale > 8)
883                 red = red << (shifts->physicalRed.scale-8) |
884                       red >> (16-shifts->physicalRed.scale);
885             if (shifts->physicalGreen.scale < 8)
886                 green = green >> (8-shifts->physicalGreen.scale);
887             else if (shifts->physicalGreen.scale > 8)
888                 green = green << (shifts->physicalGreen.scale-8) |
889                         green >> (16-shifts->physicalGreen.scale);
890             if (shifts->physicalBlue.scale < 8)
891                 blue =  blue >> (8-shifts->physicalBlue.scale);
892             else if (shifts->physicalBlue.scale > 8)
893                 blue =  blue << (shifts->physicalBlue.scale-8) |
894                         blue >> (16-shifts->physicalBlue.scale);
895
896             return (red << shifts->physicalRed.shift) | (green << shifts->physicalGreen.shift) | (blue << shifts->physicalBlue.shift);
897         }
898     }
899     else
900     {
901         if (!mapping)
902             WARN("Palette %p is not realized\n", hPal);
903
904         if (color & (1 << 24))  /* PALETTEINDEX */
905         {
906             index = LOWORD( color );
907             if (!GetPaletteEntries( hPal, index, 1, &entry ))
908                 WARN("PALETTEINDEX(%x) : index %i is out of bounds\n", color, index);
909             else if (mapping) index = mapping[index];
910         }
911         else if (color >> 24 == 2)  /* PALETTERGB */
912         {
913             index = GetNearestPaletteIndex( hPal, color );
914             if (mapping) index = mapping[index];
915         }
916         else if (color >> 16 == 0x10ff)  /* DIBINDEX */
917         {
918             return 0;
919         }
920         else  /* RGB */
921         {
922             if (physDev->depth == 1)
923                 return (((color >> 16) & 0xff) +
924                         ((color >> 8) & 0xff) + (color & 0xff) > 255*3/2) ? 1 : 0;
925
926             EnterCriticalSection( &palette_cs );
927             index = X11DRV_SysPaletteLookupPixel( color & 0xffffff, FALSE);
928             if (X11DRV_PALETTE_PaletteToXPixel) index = X11DRV_PALETTE_PaletteToXPixel[index];
929             LeaveCriticalSection( &palette_cs );
930         }
931     }
932     return index;
933 }
934
935 /***********************************************************************
936  *           X11DRV_PALETTE_LookupPixel
937  */
938 static int X11DRV_PALETTE_LookupPixel(ColorShifts *shifts, COLORREF color )
939 {
940     unsigned char spec_type = color >> 24;
941
942     /* Only accept RGB which has spec_type = 0 */
943     if(spec_type)
944         return 0;
945
946     color &= 0xffffff;
947
948     if ( X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_FIXED )
949     {
950         unsigned long red, green, blue;
951         red = GetRValue(color); green = GetGValue(color); blue = GetBValue(color);
952
953         if (X11DRV_PALETTE_Graymax)
954         {
955             /* grayscale only; return scaled value */
956             return ( (red * 30 + green * 59 + blue * 11) * X11DRV_PALETTE_Graymax) / 25500;
957         }
958         else
959         {
960             /* No shifts are set in case of 1-bit */
961             if(!shifts) shifts = &X11DRV_PALETTE_default_shifts;
962
963             /* scale each individually and construct the TrueColor pixel value */
964             if (shifts->physicalRed.scale < 8)
965                 red = red >> (8-shifts->physicalRed.scale);
966             else if (shifts->physicalRed.scale > 8)
967                 red = red << (shifts->physicalRed.scale-8) |
968                       red >> (16-shifts->physicalRed.scale);
969             if (shifts->physicalGreen.scale < 8)
970                 green = green >> (8-shifts->physicalGreen.scale);
971             else if (shifts->physicalGreen.scale > 8)
972                 green = green << (shifts->physicalGreen.scale-8) |
973                         green >> (16-shifts->physicalGreen.scale);
974             if (shifts->physicalBlue.scale < 8)
975                 blue =  blue >> (8-shifts->physicalBlue.scale);
976             else if (shifts->physicalBlue.scale > 8)
977                 blue =  blue << (shifts->physicalBlue.scale-8) |
978                         blue >> (16-shifts->physicalBlue.scale);
979
980             return (red << shifts->physicalRed.shift) | (green << shifts->physicalGreen.shift) | (blue << shifts->physicalBlue.shift);
981         }
982     }
983     else
984     {
985         WORD index;
986         HPALETTE hPal = GetStockObject(DEFAULT_PALETTE);
987         int *mapping = palette_get_mapping( hPal );
988
989         if (!mapping)
990             WARN("Palette %p is not realized\n", hPal);
991
992         EnterCriticalSection( &palette_cs );
993         index = X11DRV_SysPaletteLookupPixel( color, FALSE);
994         if (X11DRV_PALETTE_PaletteToXPixel)
995             index = X11DRV_PALETTE_PaletteToXPixel[index];
996         LeaveCriticalSection( &palette_cs );
997         return index;
998     }
999 }
1000
1001
1002 /***********************************************************************
1003  *           X11DRV_PALETTE_LookupSystemXPixel
1004  */
1005 static int X11DRV_PALETTE_LookupSystemXPixel(COLORREF col)
1006 {
1007  int            i, best = 0, diff = 0x7fffffff;
1008  int            size = palette_size;
1009  int            r,g,b;
1010
1011  for( i = 0; i < size && diff ; i++ )
1012     {
1013       if( i == NB_RESERVED_COLORS/2 )
1014       {
1015         int newi = size - NB_RESERVED_COLORS/2;
1016         if (newi>i) i=newi;
1017       }
1018
1019       r = COLOR_sysPal[i].peRed - GetRValue(col);
1020       g = COLOR_sysPal[i].peGreen - GetGValue(col);
1021       b = COLOR_sysPal[i].peBlue - GetBValue(col);
1022
1023       r = r*r + g*g + b*b;
1024
1025       if( r < diff ) { best = i; diff = r; }
1026     }
1027
1028  return (X11DRV_PALETTE_PaletteToXPixel)? X11DRV_PALETTE_PaletteToXPixel[best] : best;
1029 }
1030
1031 /***********************************************************************
1032  *           X11DRV_PALETTE_FormatSystemPalette
1033  */
1034 static void X11DRV_PALETTE_FormatSystemPalette(void)
1035 {
1036  /* Build free list so we'd have an easy way to find
1037   * out if there are any available colorcells.
1038   */
1039
1040   int i, j = X11DRV_PALETTE_firstFree = NB_RESERVED_COLORS/2;
1041
1042   COLOR_sysPal[j].peFlags = 0;
1043   for( i = NB_RESERVED_COLORS/2 + 1 ; i < 256 - NB_RESERVED_COLORS/2 ; i++ )
1044     if( i < COLOR_gapStart || i > COLOR_gapEnd )
1045       {
1046         COLOR_sysPal[i].peFlags = 0;  /* unused tag */
1047         X11DRV_PALETTE_freeList[j] = i;   /* next */
1048         j = i;
1049       }
1050   X11DRV_PALETTE_freeList[j] = 0;
1051 }
1052
1053 /***********************************************************************
1054  *           X11DRV_PALETTE_CheckSysColor
1055  */
1056 static BOOL X11DRV_PALETTE_CheckSysColor( const PALETTEENTRY *sys_pal_template, COLORREF c)
1057 {
1058   int i;
1059   for( i = 0; i < NB_RESERVED_COLORS; i++ )
1060        if( c == (*(const COLORREF*)(sys_pal_template + i) & 0x00ffffff) )
1061            return 0;
1062   return 1;
1063 }
1064
1065
1066 /***********************************************************************
1067  *           X11DRV_LookupSysPaletteExact
1068  */
1069 static int X11DRV_LookupSysPaletteExact( BYTE r, BYTE g, BYTE b )
1070 {
1071     int i;
1072     for( i = 0; i < palette_size; i++ )
1073     {
1074         if( COLOR_sysPal[i].peFlags & PC_SYS_USED )  /* skips gap */
1075             if( COLOR_sysPal[i].peRed == r &&
1076                 COLOR_sysPal[i].peGreen == g &&
1077                 COLOR_sysPal[i].peBlue == b )
1078                 return i;
1079     }
1080     return -1;
1081 }
1082
1083
1084 /***********************************************************************
1085  *              RealizePalette    (X11DRV.@)
1086  */
1087 UINT X11DRV_RealizePalette( PHYSDEV dev, HPALETTE hpal, BOOL primary )
1088 {
1089     X11DRV_PDEVICE *physDev = get_x11drv_dev( dev );
1090     char flag;
1091     int  index;
1092     UINT i, iRemapped = 0;
1093     int *prev_mapping, *mapping;
1094     PALETTEENTRY entries[256];
1095     WORD num_entries;
1096
1097     if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_VIRTUAL) return 0;
1098
1099     if (!GetObjectW( hpal, sizeof(num_entries), &num_entries )) return 0;
1100
1101     /* initialize palette mapping table */
1102     prev_mapping = palette_get_mapping( hpal );
1103     if (prev_mapping)
1104         mapping = HeapReAlloc( GetProcessHeap(), 0, prev_mapping, sizeof(int)*num_entries);
1105     else 
1106         mapping = HeapAlloc( GetProcessHeap(), 0, sizeof(int)*num_entries);
1107
1108     if(mapping == NULL) {
1109         ERR("Unable to allocate new mapping -- memory exhausted!\n");
1110         return 0;
1111     }
1112     palette_set_mapping( hpal, mapping );
1113
1114     if (num_entries > 256)
1115     {
1116         FIXME( "more than 256 entries not supported\n" );
1117         num_entries = 256;
1118     }
1119     if (!(num_entries = GetPaletteEntries( hpal, 0, num_entries, entries ))) return 0;
1120
1121     /* reset dynamic system palette entries */
1122
1123     EnterCriticalSection( &palette_cs );
1124     if( primary && X11DRV_PALETTE_firstFree != -1)
1125          X11DRV_PALETTE_FormatSystemPalette();
1126
1127     for (i = 0; i < num_entries; i++)
1128     {
1129         index = -1;
1130         flag = PC_SYS_USED;
1131
1132         /* Even though the docs say that only one flag is to be set,
1133          * they are a bitmask. At least one app sets more than one at
1134          * the same time. */
1135         if ( entries[i].peFlags & PC_EXPLICIT ) {
1136             /* palette entries are indices into system palette */
1137             index = *(WORD*)&entries[i];
1138             if( index > 255 || (index >= COLOR_gapStart && index <= COLOR_gapEnd) )
1139             {
1140                 WARN("PC_EXPLICIT: idx %d out of system palette, assuming black.\n", index);
1141                 index = 0;
1142             }
1143             if( X11DRV_PALETTE_PaletteToXPixel ) index = X11DRV_PALETTE_PaletteToXPixel[index];
1144         } else {
1145             if ( entries[i].peFlags & PC_RESERVED ) {
1146                 /* forbid future mappings to this entry */
1147                 flag |= PC_SYS_RESERVED;
1148             }
1149             
1150             if (! (entries[i].peFlags & PC_NOCOLLAPSE) ) {
1151                 /* try to collapse identical colors */
1152                 index = X11DRV_LookupSysPaletteExact( entries[i].peRed, entries[i].peGreen, entries[i].peBlue );
1153             }
1154
1155             if( index < 0 )
1156             {
1157                 if( X11DRV_PALETTE_firstFree > 0 )
1158                 {
1159                     XColor color;
1160                     index = X11DRV_PALETTE_firstFree;  /* ought to be available */
1161                     X11DRV_PALETTE_firstFree = X11DRV_PALETTE_freeList[index];
1162
1163                     color.pixel = (X11DRV_PALETTE_PaletteToXPixel) ? X11DRV_PALETTE_PaletteToXPixel[index] : index;
1164                     color.red = entries[i].peRed << 8;
1165                     color.green = entries[i].peGreen << 8;
1166                     color.blue = entries[i].peBlue << 8;
1167                     color.flags = DoRed | DoGreen | DoBlue;
1168                     XStoreColor(gdi_display, default_colormap, &color);
1169
1170                     COLOR_sysPal[index] = entries[i];
1171                     COLOR_sysPal[index].peFlags = flag;
1172                     X11DRV_PALETTE_freeList[index] = 0;
1173
1174                     if( X11DRV_PALETTE_PaletteToXPixel ) index = X11DRV_PALETTE_PaletteToXPixel[index];
1175                 }
1176                 else if ( X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_VIRTUAL )
1177                 {
1178                     index = X11DRV_PALETTE_LookupPixel( physDev->color_shifts, RGB( entries[i].peRed, entries[i].peGreen, entries[i].peBlue ));
1179                 }
1180
1181                 /* we have to map to existing entry in the system palette */
1182
1183                 index = X11DRV_SysPaletteLookupPixel( RGB( entries[i].peRed, entries[i].peGreen, entries[i].peBlue ),
1184                                                       TRUE );
1185             }
1186
1187             if( X11DRV_PALETTE_PaletteToXPixel ) index = X11DRV_PALETTE_PaletteToXPixel[index];
1188         }
1189
1190         if( !prev_mapping || mapping[i] != index ) iRemapped++;
1191         mapping[i] = index;
1192
1193         TRACE("entry %i (%x) -> pixel %i\n", i, *(COLORREF*)&entries[i], index);
1194
1195     }
1196     LeaveCriticalSection( &palette_cs );
1197     return iRemapped;
1198 }
1199
1200
1201 /***********************************************************************
1202  *              UnrealizePalette    (X11DRV.@)
1203  */
1204 BOOL X11DRV_UnrealizePalette( HPALETTE hpal )
1205 {
1206     int *mapping = palette_get_mapping( hpal );
1207
1208     if (mapping)
1209     {
1210         XDeleteContext( gdi_display, (XID)hpal, palette_context );
1211         HeapFree( GetProcessHeap(), 0, mapping );
1212     }
1213     return TRUE;
1214 }
1215
1216
1217 /***********************************************************************
1218  *              GetSystemPaletteEntries   (X11DRV.@)
1219  */
1220 UINT X11DRV_GetSystemPaletteEntries( PHYSDEV dev, UINT start, UINT count, LPPALETTEENTRY entries )
1221 {
1222     UINT i;
1223
1224     if (!entries) return palette_size;
1225     if (start >= palette_size) return 0;
1226     if (start + count >= palette_size) count = palette_size - start;
1227
1228     EnterCriticalSection( &palette_cs );
1229     for (i = 0; i < count; i++)
1230     {
1231         entries[i].peRed   = COLOR_sysPal[start + i].peRed;
1232         entries[i].peGreen = COLOR_sysPal[start + i].peGreen;
1233         entries[i].peBlue  = COLOR_sysPal[start + i].peBlue;
1234         entries[i].peFlags = 0;
1235         TRACE("\tidx(%02x) -> RGB(%08x)\n", start + i, *(COLORREF*)(entries + i) );
1236     }
1237     LeaveCriticalSection( &palette_cs );
1238     return count;
1239 }
1240
1241
1242 /***********************************************************************
1243  *              GetNearestColor   (X11DRV.@)
1244  */
1245 COLORREF X11DRV_GetNearestColor( PHYSDEV dev, COLORREF color )
1246 {
1247     unsigned char spec_type = color >> 24;
1248     COLORREF nearest;
1249
1250     if (!palette_size) return color;
1251
1252     if (spec_type == 1 || spec_type == 2)
1253     {
1254         /* we need logical palette for PALETTERGB and PALETTEINDEX colorrefs */
1255
1256         UINT index;
1257         PALETTEENTRY entry;
1258         HPALETTE hpal = GetCurrentObject( dev->hdc, OBJ_PAL );
1259
1260         if (!hpal) hpal = GetStockObject( DEFAULT_PALETTE );
1261
1262         if (spec_type == 2) /* PALETTERGB */
1263             index = GetNearestPaletteIndex( hpal, color );
1264         else  /* PALETTEINDEX */
1265             index = LOWORD(color);
1266
1267         if (!GetPaletteEntries( hpal, index, 1, &entry ))
1268         {
1269             WARN("RGB(%x) : idx %d is out of bounds, assuming NULL\n", color, index );
1270             if (!GetPaletteEntries( hpal, 0, 1, &entry )) return CLR_INVALID;
1271         }
1272         color = RGB( entry.peRed,  entry.peGreen, entry.peBlue );
1273     }
1274     color &= 0x00ffffff;
1275     EnterCriticalSection( &palette_cs );
1276     nearest = (0x00ffffff & *(COLORREF*)(COLOR_sysPal + X11DRV_SysPaletteLookupPixel(color, FALSE)));
1277     LeaveCriticalSection( &palette_cs );
1278
1279     TRACE("(%06x): returning %06x\n", color, nearest );
1280     return nearest;
1281 }
1282
1283
1284 /***********************************************************************
1285  *              RealizeDefaultPalette    (X11DRV.@)
1286  */
1287 UINT X11DRV_RealizeDefaultPalette( PHYSDEV dev )
1288 {
1289     UINT ret = 0;
1290
1291     if (palette_size && GetObjectType(dev->hdc) != OBJ_MEMDC)
1292     {
1293         /* lookup is needed to account for SetSystemPaletteUse() stuff */
1294         int i, index, *mapping = palette_get_mapping( GetStockObject(DEFAULT_PALETTE) );
1295         PALETTEENTRY entries[NB_RESERVED_COLORS];
1296
1297         GetPaletteEntries( GetStockObject(DEFAULT_PALETTE), 0, NB_RESERVED_COLORS, entries );
1298         EnterCriticalSection( &palette_cs );
1299         for( i = 0; i < NB_RESERVED_COLORS; i++ )
1300         {
1301             index = X11DRV_PALETTE_LookupSystemXPixel( RGB(entries[i].peRed,
1302                                                            entries[i].peGreen,
1303                                                            entries[i].peBlue) );
1304             /* mapping is allocated in COLOR_InitPalette() */
1305             if( index != mapping[i] )
1306             {
1307                 mapping[i]=index;
1308                 ret++;
1309             }
1310         }
1311         LeaveCriticalSection( &palette_cs );
1312     }
1313     return ret;
1314 }