HomeSort by relevance Sort by last modified time
    Searched refs:pixels (Results 101 - 125 of 993) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
AnimatedGifEncoder.java 41 // The minimum % of an images pixels that must be transparent for us to set a transparent index automatically.
62 private byte[] pixels; // BGR byte array from frame field in class:AnimatedGifEncoder
162 analyzePixels(); // build color table & map pixels
208 pixels = null;
311 int len = pixels.length;
314 NeuQuant nq = new NeuQuant(pixels, len, sample);
324 // map image pixels to new palette
327 int index = nq.map(pixels[k++] & 0xff, pixels[k++] & 0xff, pixels[k++] & 0xff)
    [all...]
  /external/skia/src/effects/
SkOverdrawColorFilter.cpp 27 auto pixels = (SkPM4f*)ctx->rgba;
29 uint8_t alpha = (int)(pixels[i].a() * 255);
33 pixels[i] = SkPM4f::FromPMColor(ctx->colors[alpha]);
  /external/skqp/src/effects/
SkOverdrawColorFilter.cpp 27 auto pixels = (SkPM4f*)ctx->rgba;
29 uint8_t alpha = (int)(pixels[i].a() * 255);
33 pixels[i] = SkPM4f::FromPMColor(ctx->colors[alpha]);
  /external/swiftshader/src/OpenGL/libGL/
Texture.h 93 void setImage(GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *image);
94 void subImage(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *image);
95 void setCompressedImage(GLsizei imageSize, const void *pixels, Image *image);
96 void subImageCompressed(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, Image *image);
131 void setImage(GLint level, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels);
132 void setCompressedImage(GLint level, GLenum format, GLsizei width, GLsizei height, GLsizei imageSize, const void *pixels);
133 void subImage(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels);
134 void subImageCompressed(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels);
184 void setImage(GLenum target, GLint level, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels);
185 void setCompressedImage(GLenum target, GLint level, GLenum format, GLsizei width, GLsizei height, GLsizei imageSize, const void *pixels);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
ColorExtractor.java 53 int[] pixels = new int[samples]; local
61 // Drop mostly-transparent pixels.
74 pixels[pixelCount++] = rgb;
92 int rgb = pixels[i];
  /external/ImageMagick/coders/
rgb.c 106 *pixels;
182 pixels=(const unsigned char *) NULL;
193 pixels=(const unsigned char *) ReadBlobStream(image,length,
205 Read pixels to virtual canvas image then push to image.
224 pixels=(const unsigned char *) ReadBlobStream(image,length,
249 quantum_info,quantum_type,pixels,exception);
282 pixels=(const unsigned char *) ReadBlobStream(image,length,
306 pixels=(const unsigned char *) ReadBlobStream(image,length,
334 quantum_info,quantum_type,pixels,exception);
384 pixels=(const unsigned char *) ReadBlobStream(image,length
103 *pixels; local
1116 *pixels; local
    [all...]
art.c 104 *pixels;
171 pixels=(const unsigned char *) ReadBlobStream(image,length,
176 GrayQuantum,pixels,exception);
177 pixels=(const unsigned char *) ReadBlobStream(image,(size_t) (-(ssize_t)
304 *pixels;
331 pixels=(unsigned char *) GetQuantumPixels(quantum_info);
338 GrayQuantum,pixels,exception);
339 count=WriteBlob(image,length,pixels);
342 count=WriteBlob(image,(size_t) (-(ssize_t) length) & 0x01,pixels);
101 *pixels; local
298 *pixels; local
  /external/ImageMagick/www/source/
contrast.c 41 **pixels; local
76 pixels=PixelGetNextIteratorRow(iterator,&width);
78 if ((pixels == (PixelWand **) NULL) ||
83 PixelGetMagickColor(pixels[x],&pixel);
  /external/ImageMagick/www/source/wand/
sigmoidal-contrast.c 20 **pixels; local
26 pixels=GetWandViewPixels(contrast_view);
29 PixelGetMagickColor(pixels[x],&pixel);
34 PixelSetMagickColor(pixels[x],&pixel);
  /external/mesa3d/src/mesa/main/
drawpix.h 34 GLenum format, GLenum type, const GLvoid *pixels );
texcompress_s3tc.c 125 const GLubyte *pixels; local
151 pixels = tempImage;
155 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight,
162 (*ext_tx_compress_dxtn)(3, srcWidth, srcHeight, pixels,
182 const GLubyte *pixels; local
209 pixels = tempImage;
213 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight,
220 (*ext_tx_compress_dxtn)(4, srcWidth, srcHeight, pixels,
240 const GLubyte *pixels; local
267 pixels = tempImage
297 const GLubyte *pixels; local
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_dibtransferfunc.h 32 int pixels,
  /external/pdfium/core/fxcodec/codec/
ccodec_iccmodule.h 47 int pixels);
  /external/skia/gm/
bitmapshader.cpp 123 uint8_t* pixels = new uint8_t[bitmapH]; local
125 pixels[i] = i & 0xff;
127 bitmap.setPixels(pixels);
134 delete [] pixels;
  /external/skia/include/core/
SkRasterHandleAllocator.h 20 * 1. controls how the memory for the pixels is allocated
45 // with it: the pixels, the "handle", etc. This is passed the pixel address and fReleaseCtx.
46 void (*fReleaseProc)(void* pixels, void* ctx);
48 void* fPixels; // pixels for this allocation
49 size_t fRowBytes; // rowbytes for these pixels
54 * Given a requested info, allocate the corresponding pixels/rowbytes, and whatever handle
55 * is desired to give clients access to those pixels. The rec also contains a proc and context
59 * when canvas->saveLayer() is called, the allocator will be called to allocate the pixels
75 * If rec is non-null, then it will be used as the base-layer of pixels/handle.
  /external/skia/src/codec/
SkCodecImageGenerator.h 26 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options& opts)
  /external/skia/src/ports/
SkImageGeneratorCG.h 32 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options&)
  /external/skqp/gm/
bitmapshader.cpp 123 uint8_t* pixels = new uint8_t[bitmapH]; local
125 pixels[i] = i & 0xff;
127 bitmap.setPixels(pixels);
134 delete [] pixels;
  /external/skqp/include/core/
SkRasterHandleAllocator.h 20 * 1. controls how the memory for the pixels is allocated
45 // with it: the pixels, the "handle", etc. This is passed the pixel address and fReleaseCtx.
46 void (*fReleaseProc)(void* pixels, void* ctx);
48 void* fPixels; // pixels for this allocation
49 size_t fRowBytes; // rowbytes for these pixels
54 * Given a requested info, allocate the corresponding pixels/rowbytes, and whatever handle
55 * is desired to give clients access to those pixels. The rec also contains a proc and context
59 * when canvas->saveLayer() is called, the allocator will be called to allocate the pixels
75 * If rec is non-null, then it will be used as the base-layer of pixels/handle.
  /external/skqp/src/codec/
SkCodecImageGenerator.h 26 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options& opts)
  /external/skqp/src/ports/
SkImageGeneratorCG.h 32 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options&)
  /external/wayland/cursor/
xcursor.h 43 XcursorPixel *pixels; /* pointer to pixels */ member in struct:_XcursorImage
  /frameworks/base/native/webview/plat_support/
draw_sw.h 45 typedef void (AwReleasePixelsFunction)(AwPixelInfo* pixels);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapShaderTest.java 115 int[] pixels = new int[4]; local
116 dstBitmap.getPixels(pixels, 0, 4, 0, 0, 4, 1);
118 pixels);
137 int[] pixels = new int[4]; local
138 dstBitmap.getPixels(pixels, 0, 4, 0, 0, 4, 1);
140 pixels);
159 int[] pixels = new int[4]; local
160 dstBitmap.getPixels(pixels, 0, 4, 0, 0, 4, 1);
162 pixels);
  /external/ImageMagick/MagickCore/
compress.c 481 Uncompress 1D Huffman to runlength encoded pixels.
608 Transfer scanline to image pixels.
780 Compress to 1D Huffman pixels.
900 % unsigned char *magick_restrict pixels,ExceptionInfo *exception)
906 % o length: A value that specifies the number of pixels to compress.
908 % o pixels: the address of an unsigned array of characters containing the
909 % pixels to compress.
915 unsigned char *magick_restrict pixels,ExceptionInfo *exception)
962 assert(pixels != (unsigned char *) NULL);
984 last_code=(size_t) pixels[0]
    [all...]

Completed in 990 milliseconds

1 2 3 45 6 7 8 91011>>