HomeSort by relevance Sort by last modified time
    Searched defs:BitsPerPixel (Results 1 - 8 of 8) sorted by null

  /external/giflib/
gif_lib_private.h 34 BitsPerPixel, /* Bits per pixel (Codes uses at least this + 1). */
dgif_lib.c 231 int BitsPerPixel;
255 BitsPerPixel = (Buf[0] & 0x07) + 1;
261 GifFile->SColorMap = GifMakeMapObject(1 << BitsPerPixel, NULL);
333 unsigned int BitsPerPixel;
355 BitsPerPixel = (Buf[0] & 0x07) + 1;
367 GifFile->Image.ColorMap = GifMakeMapObject(1 << BitsPerPixel, NULL);
700 *CodeSize = Private->BitsPerPixel;
746 int i, BitsPerPixel;
752 BitsPerPixel = CodeSize;
755 Private->BitsPerPixel = BitsPerPixel
    [all...]
egif_lib.c 28 /* Masks given codes to BitsPerPixel, to make sure all codes are in range: */
320 (ColorMap ? ColorMap->BitsPerPixel - 1 : 0x07 ); /* Actual size of the
401 (ColorMap ? ColorMap->BitsPerPixel - 1 : 0);
459 Mask = CodeMask[Private->BitsPerPixel];
488 Pixel &= CodeMask[Private->BitsPerPixel];
829 int BitsPerPixel;
835 BitsPerPixel = GifFile->Image.ColorMap->BitsPerPixel;
837 BitsPerPixel = GifFile->SColorMap->BitsPerPixel;
    [all...]
gif_lib.h 41 int BitsPerPixel;
  /external/jpeg/
wrgif.c 223 int BitsPerPixel, ColorMapSize, InitCodeSize, FlagByte;
230 BitsPerPixel = 1;
231 while (num_colors > (1 << BitsPerPixel))
232 BitsPerPixel++;
233 ColorMapSize = 1 << BitsPerPixel;
234 if (BitsPerPixel <= 1)
237 InitCodeSize = BitsPerPixel;
252 FlagByte |= (BitsPerPixel-1) << 4; /* color resolution */
253 FlagByte |= (BitsPerPixel-1); /* size of global color table */
  /external/skia/src/codec/
SkSwizzler.h 77 static int BitsPerPixel(SrcConfig sc) {
111 SkASSERT(SkIsAlign8(BitsPerPixel(sc)));
112 return BitsPerPixel(sc) >> 3;
228 * @param deltaSrc if bitsPerPixel % 8 == 0, deltaSrc is bytesPerPixel
229 * else, deltaSrc is bitsPerPixel
240 const int fDeltaSrc; // if bitsPerPixel % 8 == 0
243 // deltaSrc is bitsPerPixel
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_api.h 291 GLint BitsPerPixel; /* True bits per pixel for XImages */
  /external/mesa3d/src/mesa/drivers/x11/
xmesaP.h 81 GLint BitsPerPixel; /* True bits per pixel for XImages */

Completed in 416 milliseconds