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

1 2 3

  /external/chromium_org/third_party/skia/include/core/
SkMallocPixelRef.h 22 * and optional colortable. The caller is responsible for managing the
26 * The pixelref will ref() the colortable (if not NULL).
39 * This pixelref will ref() the specified colortable (if not NULL).
48 * rowBytes, and optional colortable. On destruction, ReleaseProc
51 * This pixelref will ref() the specified colortable (if not NULL).
63 * SkData, rowBytes, and optional colortable as pixel storage.
67 * This pixelref will ref() the specified colortable (if not NULL).
SkBitmap.h 228 * a colortable, then ColorTable must be non-null, and will be ref'd.
308 If the bitmap retains a reference to the colortable (assuming it is
312 @param ctable ColorTable (or null) that matches the specified pixels
342 If the bitmap retains a reference to the colortable (assuming it is
345 @param ctable ColorTable (or null) to use with the pixels that will
363 If the bitmap retains a reference to the colortable (assuming it is
369 @param ctable ColorTable (or null) to use with the pixels that will
443 non-null colortable. Returns true if all of the above are met.
454 /** Return the bitmap's colortable, if it uses one (i.e. colorType i
    [all...]
SkColorTable.h 20 8-bit bitmaps, where the bitmap bytes are interpreted as indices into the colortable.
SkPixelRef.h 67 /** Return the current colorTable (if any) if pixels are locked, or null.
69 SkColorTable* colorTable() const { return fRec.fColorTable; }
388 * the memory for the pixels. If the ImageInfo requires a ColorTable,
389 * the pixelref will ref() the colortable.
  /external/skia/include/core/
SkMallocPixelRef.h 22 * and optional colortable. The caller is responsible for managing the
26 * The pixelref will ref() the colortable (if not NULL).
39 * This pixelref will ref() the specified colortable (if not NULL).
48 * rowBytes, and optional colortable. On destruction, ReleaseProc
51 * This pixelref will ref() the specified colortable (if not NULL).
63 * SkData, rowBytes, and optional colortable as pixel storage.
67 * This pixelref will ref() the specified colortable (if not NULL).
SkBitmap.h 274 any pixel/colortable ownership, just like reset().
295 * a colortable, then ColorTable must be non-null, and will be ref'd.
356 If the bitmap retains a reference to the colortable (assuming it is
360 @param ctable ColorTable (or null) that matches the specified pixels
390 If the bitmap retains a reference to the colortable (assuming it is
393 @param ctable ColorTable (or null) to use with the pixels that will
407 If the bitmap retains a reference to the colortable (assuming it is
413 @param ctable ColorTable (or null) to use with the pixels that will
480 non-null colortable. Returns true if all of the above are met
    [all...]
SkColorTable.h 20 8-bit bitmaps, where the bitmap bytes are interpreted as indices into the colortable.
SkPixelRef.h 66 /** Return the current colorTable (if any) if pixels are locked, or null.
68 SkColorTable* colorTable() const { return fRec.fColorTable; }
387 * the memory for the pixels. If the ImageInfo requires a ColorTable,
388 * the pixelref will ref() the colortable.
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
color_enhancement.cc 39 temp_chroma = colorTable[*ptr_u][*ptr_v];
40 *ptr_v = colorTable[*ptr_v][*ptr_u];
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libpng.cpp 345 SkColorTable* colorTable = NULL;
348 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
351 SkAutoUnref aur(colorTable);
354 kIndex_8_SkColorType == colorType ? colorTable : NULL)) {
393 if (colorTable != NULL) {
407 /* We have to pass the colortable explicitly, since we may have one
411 SkAutoLockColors ctLock(colorTable);
666 the colortable by 1 (if its < 256) and duplicate the last color into that slot.
805 SkColorTable* colorTable = NULL;
808 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
    [all...]
SkImageDecoder_libgif.cpp 157 SkDebugf("libgif error [%s] bitmap [%d %d] pixels %p colortable %p\n",
165 SkDebugf("libgif warning [%s] bitmap [%d %d] pixels %p colortable %p\n",
329 // now we decode the colortable
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 345 SkColorTable* colorTable = NULL;
348 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
351 SkAutoUnref aur(colorTable);
354 kIndex_8_SkColorType == colorType ? colorTable : NULL)) {
393 if (colorTable != NULL) {
407 /* We have to pass the colortable explicitly, since we may have one
411 SkAutoLockColors ctLock(colorTable);
666 the colortable by 1 (if its < 256) and duplicate the last color into that slot.
805 SkColorTable* colorTable = NULL;
808 decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable);
    [all...]
SkImageDecoder_libgif.cpp 157 SkDebugf("libgif error [%s] bitmap [%d %d] pixels %p colortable %p\n",
166 SkDebugf("libgif warning [%s] bitmap [%d %d] pixels %p colortable %p\n",
330 // now we decode the colortable
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
createTable.m 131 fprintf(fid,'// Umod=colorTable[U][V]\n');
132 fprintf(fid,'// Vmod=colorTable[V][U]\n');
134 fprintf(fid,'static unsigned char colorTable[%i][%i] = {\n', size(U,1), size(U,2));
  /external/chromium_org/third_party/skia/src/core/
SkBitmap_scroll.cpp 60 // don't call readyToDraw(), since we don't require a colortable per se
SkBitmap.cpp 167 fColorTable = fPixelRef->colorTable();
923 // we lock this now, since we may need its colortable
939 // allocate colortable if srcConfig == kIndex8_Config
942 // TODO: can we just ref() the src colortable? Is it reentrant-safe?
    [all...]
SkBitmapProcShader.cpp 104 // ugh, I have to lock-pixels to inspect the colortable
  /external/skia/src/core/
SkBitmap_scroll.cpp 60 // don't call readyToDraw(), since we don't require a colortable per se
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 158 const GIFColorMap::Table& colorTable = frameContext->localColorMap().isDefined() ? frameContext->localColorMap().table() : m_reader->globalColorMap().table();
160 if (colorTable.isEmpty())
163 GIFColorMap::Table::const_iterator colorTableIter = colorTable.begin();
189 if ((sourceValue != transparentPixel) && (sourceValue < colorTable.size())) {
199 if ((sourceValue != transparentPixel) && (sourceValue < colorTable.size()))
  /external/chromium_org/third_party/skia/src/gpu/
SkGr.cpp 26 /* Fill out buffer with the compressed format Ganesh expects from a colortable
27 based bitmap. [palette (colortable) + indices].
30 we could detect that the colortable.count is <= 16, and then repack the
35 as the colortable.count says it is.
  /external/skia/src/gpu/
SkGr.cpp 24 /* Fill out buffer with the compressed format Ganesh expects from a colortable
25 based bitmap. [palette (colortable) + indices].
28 we could detect that the colortable.count is <= 16, and then repack the
33 as the colortable.count says it is.
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pbo.c 87 * "INVALID_OPERATION is generated by ColorTable, ColorSubTable,
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_pixeltransfer.c 30 * scale/bias, colortable, convolution...
  /external/mesa3d/src/mesa/main/
pbo.c 87 * "INVALID_OPERATION is generated by ColorTable, ColorSubTable,
  /external/mesa3d/src/mesa/state_tracker/
st_atom_pixeltransfer.c 30 * scale/bias, colortable, convolution...

Completed in 3829 milliseconds

1 2 3