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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/mesa/src/docs/
MESA_pixmap_colormap.spec 33 StaticColor, GrayScale and StaticGray visuals, Mesa needs a colormap
36 The colormap associated with a window can be queried with normal
37 Xlib functions but there is no colormap associated with pixmaps.
40 which allows specification of a colormap.
53 Pixmap pixmap, Colormap cmap );
65 to compute pixel values from RGB values Mesa requires a colormap.
70 Pixmap pixmap, Colormap cmap );
72 allows one to create a GLXPixmap with a specific colormap. The image
74 same colormap and visual) with the expected results.
  /external/mesa3d/docs/
MESA_pixmap_colormap.spec 33 StaticColor, GrayScale and StaticGray visuals, Mesa needs a colormap
36 The colormap associated with a window can be queried with normal
37 Xlib functions but there is no colormap associated with pixmaps.
40 which allows specification of a colormap.
53 Pixmap pixmap, Colormap cmap );
65 to compute pixel values from RGB values Mesa requires a colormap.
70 Pixmap pixmap, Colormap cmap );
72 allows one to create a GLXPixmap with a specific colormap. The image
74 same colormap and visual) with the expected results.
  /external/chromium_org/third_party/libjpeg_turbo/
rdbmp.c 60 JSAMPARRAY colormap; /* BMP colormap (converted to my format) */ member in struct:_bmp_source_struct
85 /* Read the colormap from a BMP file */
93 sinfo->colormap[2][i] = (JSAMPLE) read_byte(sinfo);
94 sinfo->colormap[1][i] = (JSAMPLE) read_byte(sinfo);
95 sinfo->colormap[0][i] = (JSAMPLE) read_byte(sinfo);
101 sinfo->colormap[2][i] = (JSAMPLE) read_byte(sinfo);
102 sinfo->colormap[1][i] = (JSAMPLE) read_byte(sinfo);
103 sinfo->colormap[0][i] = (JSAMPLE) read_byte(sinfo);
123 /* This version is for reading 8-bit colormap indexes *
126 register JSAMPARRAY colormap = source->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...]
wrrle.c 57 rle_map *colormap; /* RLE-style color map, or NULL if none */ member in struct:__anon17406
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...]
  /external/jpeg/
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...]
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...]
wrrle.c 57 rle_map *colormap; /* RLE-style color map, or NULL if none */ member in struct:__anon27360
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...]
  /external/qemu/distrib/jpeg-6b/
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...]
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...]
wrrle.c 57 rle_map *colormap; /* RLE-style color map, or NULL if none */ member in struct:__anon33944
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...]
  /external/giflib/
gifalloc.c 37 * ColorMap if that pointer is non-NULL.
40 GifMakeMapObject(int ColorCount, const GifColorType *ColorMap)
64 if (ColorMap != NULL) {
66 (char *)ColorMap, ColorCount * sizeof(GifColorType));
287 /* Deallocate its Colormap */
288 if (sp->ImageDesc.ColorMap != NULL) {
289 GifFreeMapObject(sp->ImageDesc.ColorMap);
290 sp->ImageDesc.ColorMap = NULL;
338 if (sp->ImageDesc.ColorMap != NULL) {
339 sp->ImageDesc.ColorMap = GifMakeMapObject
    [all...]
  /external/libpng/contrib/examples/
pngtopng.c 40 /* Change this to try different formats! If you set a colormap format
41 * then you must also supply a colormap below.
50 0/*row_stride*/, NULL/*colormap for PNG_FORMAT_FLAG_COLORMAP */))
54 NULL/*colormap*/))
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_SetColors.3 3 SDL_SetColors \- Sets a portion of the colormap for the given 8-bit surface\&.
11 Sets a portion of the colormap for the given 8-bit surface\&.
13 When \fBsurface\fR is the surface associated with the current display, the display colormap will be updated with the requested colors\&. If \fBSDL_HWPALETTE\fP was set in \fISDL_SetVideoMode\fR flags, \fBSDL_SetColors\fP will always return \fB1\fR, and the palette is guaranteed to be set the way you desire, even if the window colormap has to be warped or run under emulation\&.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluscolormatrix.h 56 typedef struct ColorMap {
59 } ColorMap;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/
Xcms.h 349 Colormap /* colormap */,
356 Colormap /* colormap */,
365 Colormap /* colormap */
602 Colormap /* colormap */,
627 Colormap /* colormap */,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xcms.h 349 Colormap /* colormap */,
356 Colormap /* colormap */,
365 Colormap /* colormap */
602 Colormap /* colormap */,
627 Colormap /* colormap */,
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xf86dga1.h 138 Colormap /*Colormap */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
Xcup.h 52 Colormap /* colormap */,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
Xcup.h 52 Colormap /* colormap */,
  /sdk/emulator/opengl/tests/ut_renderer/
X11RendererSurface.cpp 53 Colormap x11Colormap = XCreateColormap(m_display, rootWindow, visualInfo->visual, AllocNone);
55 sWA.Colormap = x11Colormap;
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.h 59 Display *GFX_Display; /* Used for graphics and colormap stuff */
146 /* Colormap handling */
147 Colormap DisplayColormap; /* The default display colormap */
148 Colormap XColorMap; /* The current window colormap */

Completed in 347 milliseconds

1 2 3 4 5 6 7 8 91011