/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/jmonkeyengine/engine/src/core-data/Common/MatDefs/Misc/ |
ColoredTextured.j3md | 4 Texture2D ColorMap
|
Unshaded.j3md | 4 Texture2D ColorMap
26 HAS_COLORMAP : ColorMap
|
SimpleTextured.j3md | 6 Texture2D ColorMap
|
/external/jmonkeyengine/engine/src/test/jme3test/texture/ |
UnshadedArray.j3md | 4 TextureArray ColorMap
26 HAS_COLORMAP : ColorMap
|
/external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/ |
Texture.glsllib | 18 vec4 Texture_GetColor(in sampler2D colorMap, in vec2 texCoord){
20 vec4 color = texture2D(colorMap, texCoord);
39 return texture2D(colorMap, texCoord);
|
/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:__anon19669 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:__anon24934 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/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/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-4.6/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/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
Xcup.h | 59 Colormap /* colormap */,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
Xcup.h | 59 Colormap /* colormap */,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
Xcup.h | 59 Colormap /* colormap */,
|
/sdk/emulator/opengl/tests/ut_renderer/ |
X11RendererSurface.cpp | 53 Colormap x11Colormap = XCreateColormap(m_display, rootWindow, visualInfo->visual, AllocNone); 55 sWA.Colormap = x11Colormap;
|