HomeSort by relevance Sort by last modified time
    Searched defs:colormap (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/npapi/bindings/
npapi_x11.h 56 Colormap colormap; member in struct:_NPSetWindowCallbackStruct
  /external/chromium/chrome/browser/ui/gtk/
theme_install_bubble_view_gtk.cc 107 GdkColormap* colormap = gdk_screen_get_rgba_colormap(screen); local
109 if (colormap)
110 gtk_widget_set_colormap(widget_, colormap);
  /external/jpeg/
wrrle.c 57 rle_map *colormap; /* RLE-style color map, or NULL if none */ member in struct:__anon21473
110 /* Convert colormap, if any, to RLE format. */
112 dest->colormap = NULL;
117 dest->colormap = (rle_map *) (*cinfo->mem->alloc_small)
119 MEMZERO(dest->colormap, cmapsize);
125 dest->colormap[ci * CMAPLENGTH + i] =
126 GETJSAMPLE(cinfo->colormap[ci][i]) << 8;
200 header.cmap = dest->colormap;
201 /* Add a comment to the output image with the true colormap length. */
rdrle.c 42 * GRAYSCALE - 8 bits, no colormap
44 * PSEUDOCOLOR - 8 bits, 3 channel colormap
45 * TRUECOLOR - 24 bits, 3 channel colormap
46 * DIRECTCOLOR - 24 bits, no colormap
210 rle_map *colormap; local
213 colormap = source->header.cmap;
221 *dest_row++ = (JSAMPLE) (colormap[val ] >> 8);
222 *dest_row++ = (JSAMPLE) (colormap[val + 256] >> 8);
223 *dest_row++ = (JSAMPLE) (colormap[val + 512] >> 8);
247 rle_map *colormap; local
    [all...]
wrbmp.c 158 /* Write a Windows-style BMP file header, including colormap if needed */
173 /* Compute colormap size and total file size */
185 /* Grayscale output. We need to fake a 256-entry colormap. */
190 headersize = 14 + 40 + cmap_entries * 4; /* Header and colormap */
231 /* Write an OS2-style BMP file header, including colormap if needed */
238 /* Compute colormap size and total file size */
250 /* Grayscale output. We need to fake a 256-entry colormap. */
255 headersize = 14 + 12 + cmap_entries * 3; /* Header and colormap */
287 * Write the colormap.
295 JSAMPARRAY colormap = cinfo->colormap local
    [all...]
rdbmp.c 57 JSAMPARRAY colormap; /* BMP colormap (converted to my format) */ member in struct:_bmp_source_struct
82 /* Read the colormap from a BMP file */
90 sinfo->colormap[2][i] = (JSAMPLE) read_byte(sinfo);
91 sinfo->colormap[1][i] = (JSAMPLE) read_byte(sinfo);
92 sinfo->colormap[0][i] = (JSAMPLE) read_byte(sinfo);
98 sinfo->colormap[2][i] = (JSAMPLE) read_byte(sinfo);
99 sinfo->colormap[1][i] = (JSAMPLE) read_byte(sinfo);
100 sinfo->colormap[0][i] = (JSAMPLE) read_byte(sinfo);
120 /* This version is for reading 8-bit colormap indexes *
123 register JSAMPARRAY colormap = source->colormap; local
    [all...]
rdtarga.c 53 JSAMPARRAY colormap; /* Targa colormap (converted to my format) */ member in struct:_tga_source_struct
102 /* Read the colormap from a Targa file */
111 sinfo->colormap[2][i] = (JSAMPLE) read_byte(sinfo);
112 sinfo->colormap[1][i] = (JSAMPLE) read_byte(sinfo);
113 sinfo->colormap[0][i] = (JSAMPLE) read_byte(sinfo);
191 /* This version is for reading 8-bit colormap indexes */
197 register JSAMPARRAY colormap = source->colormap; local
203 *ptr++ = colormap[0][t]
    [all...]
jquant1.c 27 * In 1-pass quantization the colormap must be chosen in advance of seeing the
33 * Since the colormap is orthogonal, the representative value for each color
35 * then these indexes can be combined into a colormap index by a standard
41 * index of the colormap entry closest to a given pixel value is just
145 /* Initially allocated colormap is saved here */
151 * premultiplied as described above. Since colormap indexes must fit into
172 * These routines determine the colormap to be used. The rest of the module
173 * only assumes that the colormap is orthogonal.
269 * Create the colormap.
276 JSAMPARRAY colormap; /* Created colormap * local
    [all...]
  /external/qemu/distrib/jpeg-6b/
wrrle.c 57 rle_map *colormap; /* RLE-style color map, or NULL if none */ member in struct:__anon26702
110 /* Convert colormap, if any, to RLE format. */
112 dest->colormap = NULL;
117 dest->colormap = (rle_map *) (*cinfo->mem->alloc_small)
119 MEMZERO(dest->colormap, cmapsize);
125 dest->colormap[ci * CMAPLENGTH + i] =
126 GETJSAMPLE(cinfo->colormap[ci][i]) << 8;
200 header.cmap = dest->colormap;
201 /* Add a comment to the output image with the true colormap length. */
rdrle.c 42 * GRAYSCALE - 8 bits, no colormap
44 * PSEUDOCOLOR - 8 bits, 3 channel colormap
45 * TRUECOLOR - 24 bits, 3 channel colormap
46 * DIRECTCOLOR - 24 bits, no colormap
210 rle_map *colormap; local
213 colormap = source->header.cmap;
221 *dest_row++ = (JSAMPLE) (colormap[val ] >> 8);
222 *dest_row++ = (JSAMPLE) (colormap[val + 256] >> 8);
223 *dest_row++ = (JSAMPLE) (colormap[val + 512] >> 8);
247 rle_map *colormap; local
    [all...]
wrbmp.c 158 /* Write a Windows-style BMP file header, including colormap if needed */
173 /* Compute colormap size and total file size */
185 /* Grayscale output. We need to fake a 256-entry colormap. */
190 headersize = 14 + 40 + cmap_entries * 4; /* Header and colormap */
231 /* Write an OS2-style BMP file header, including colormap if needed */
238 /* Compute colormap size and total file size */
250 /* Grayscale output. We need to fake a 256-entry colormap. */
255 headersize = 14 + 12 + cmap_entries * 3; /* Header and colormap */
287 * Write the colormap.
295 JSAMPARRAY colormap = cinfo->colormap local
    [all...]
rdbmp.c 57 JSAMPARRAY colormap; /* BMP colormap (converted to my format) */ member in struct:_bmp_source_struct
82 /* Read the colormap from a BMP file */
90 sinfo->colormap[2][i] = (JSAMPLE) read_byte(sinfo);
91 sinfo->colormap[1][i] = (JSAMPLE) read_byte(sinfo);
92 sinfo->colormap[0][i] = (JSAMPLE) read_byte(sinfo);
98 sinfo->colormap[2][i] = (JSAMPLE) read_byte(sinfo);
99 sinfo->colormap[1][i] = (JSAMPLE) read_byte(sinfo);
100 sinfo->colormap[0][i] = (JSAMPLE) read_byte(sinfo);
120 /* This version is for reading 8-bit colormap indexes *
123 register JSAMPARRAY colormap = source->colormap; local
    [all...]
rdtarga.c 53 JSAMPARRAY colormap; /* Targa colormap (converted to my format) */ member in struct:_tga_source_struct
102 /* Read the colormap from a Targa file */
111 sinfo->colormap[2][i] = (JSAMPLE) read_byte(sinfo);
112 sinfo->colormap[1][i] = (JSAMPLE) read_byte(sinfo);
113 sinfo->colormap[0][i] = (JSAMPLE) read_byte(sinfo);
191 /* This version is for reading 8-bit colormap indexes */
197 register JSAMPARRAY colormap = source->colormap; local
203 *ptr++ = colormap[0][t]
    [all...]
jquant1.c 27 * In 1-pass quantization the colormap must be chosen in advance of seeing the
33 * Since the colormap is orthogonal, the representative value for each color
35 * then these indexes can be combined into a colormap index by a standard
41 * index of the colormap entry closest to a given pixel value is just
145 /* Initially allocated colormap is saved here */
151 * premultiplied as described above. Since colormap indexes must fit into
172 * These routines determine the colormap to be used. The rest of the module
173 * only assumes that the colormap is orthogonal.
269 * Create the colormap.
276 JSAMPARRAY colormap; /* Created colormap * local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_gtk.cc 211 GdkColormap* colormap = gdk_screen_get_rgba_colormap(screen); local
214 if (!colormap)
215 colormap = gdk_screen_get_rgb_colormap(screen);
217 gtk_widget_set_colormap(container_, colormap);
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_gtk.cc 149 extra->colormap = DefaultColormap(GDK_DISPLAY(), screen);
246 GdkColormap* colormap = gdk_colormap_new(gdk_visual_get_system(), local
248 gdk_drawable_set_colormap(pixmap_, colormap);
250 g_object_unref(colormap);
515 extra->colormap = DefaultColormap(GDK_DISPLAY(), screen);
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
dragged_view_gtk.cc 308 GdkColormap* colormap = gdk_screen_get_rgba_colormap(screen); local
311 if (!colormap)
312 colormap = gdk_screen_get_rgb_colormap(screen);
314 gtk_widget_set_colormap(container_, colormap);
  /external/chromium_org/chromeos/display/
real_output_configurator_delegate.cc 90 Colormap colormap = DefaultColormap(display_, 0); local
96 XAllocColor(display_, colormap, &color);
99 XFreeColors(display_, colormap, &color.pixel, 1, 0);
  /external/libpng/contrib/gregbook/
rpng-x.c 148 static Colormap colormap; variable
509 colormap = XCreateColormap(display, root, visual, AllocNone);
510 if (!colormap) {
545 attr.colormap = colormap;
561 XSetWindowColormap(display, window, colormap);
884 XFreeColormap(display, colormap);
rpng2-x.c 282 static Colormap colormap; variable
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_ui.cc 349 ColorMap::const_iterator it = colors_.find(id);
835 ColorMap::const_iterator it = colors_.find(color_id);
1024 GdkColormap* colormap = gdk_drawable_get_colormap(pixmap); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xutil.h 315 Colormap colormap; member in struct:__anon38707
711 XStandardColormap* /* colormap */,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xutil.h 315 Colormap colormap; member in struct:__anon40297
711 XStandardColormap* /* colormap */,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xutil.h 315 Colormap colormap; member in struct:__anon41812
711 XStandardColormap* /* colormap */,
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npapi.h 326 Colormap colormap; member in struct:__anon15403

Completed in 556 milliseconds

1 2