/external/chromium_org/tools/imagediff/ |
image_diff_png.cc | 26 // 4 bytes per pixel, in RGBA order in memory regardless of endianness. 51 // Converts BGRA->RGBA and RGBA->BGRA. 64 void ConvertRGBAtoRGB(const unsigned char* rgba, int pixel_width, 67 const unsigned char* pixel_in = &rgba[x * 4]; 127 unsigned char* rgba, bool* is_opaque) { 130 unsigned char* pixel_out = &rgba[x * 4]; 174 // Expand to ensure we use 24-bit for RGB and 32-bit for RGBA. 620 // Decode a PNG into an RGBA pixel array. 627 // Encode an RGBA pixel array into a PNG [all...] |
/external/chromium_org/ui/gfx/codec/ |
png_codec.cc | 21 // Converts BGRA->RGBA and RGBA->BGRA. 34 void ConvertRGBAtoRGB(const unsigned char* rgba, int pixel_width, 37 const unsigned char* pixel_in = &rgba[x * 4]; 66 unsigned char* rgba, bool* is_opaque) { 67 gfx::ConvertSkiaToRGBA(skia, pixel_width, rgba); 190 // Expand to ensure we use 24-bit for RGB and 32-bit for RGBA.
|
/external/mesa3d/src/mesa/swrast/ |
s_points.c | 492 span->array->rgba[count][RCOMP] = vert->color[0]; 493 span->array->rgba[count][GCOMP] = vert->color[1]; 494 span->array->rgba[count][BCOMP] = vert->color[2]; 495 span->array->rgba[count][ACOMP] = vert->color[3];
|
s_drawpix.c | 406 * Draw RGBA image. 454 GLfloat *rgba = (GLfloat *) span.array->attribs[FRAG_ATTRIB_COL0]; local 466 /* get image row as float/RGBA */ 467 _mesa_unpack_color_span_float(ctx, spanWidth, GL_RGBA, rgba, 480 _swrast_write_zoomed_rgba_span(ctx, imgX, imgY, &span, rgba);
|
/external/opencv/otherlibs/highgui/ |
utils.h | 80 uchar* rgba, int rgba_step, CvSize size );
|
/external/webp/src/dsp/ |
dsp.h | 176 // General function for converting two lines of ARGB or RGBA. 194 // Apply alpha pre-multiply on an rgba, bgra or argb plane of size w * h. 195 // alpha_first should be 0 for argb, 1 for rgba or bgra (where alpha is last). 197 uint8_t* rgba, int alpha_first, int w, int h, int stride);
|
/external/qemu/ |
console.c | 236 /* convert a RGBA color to a color index usable in graphic primitives */ 237 static unsigned int vga_get_color(DisplayState *ds, unsigned int rgba) 244 r = (rgba >> 16) & 0xff; 245 g = (rgba >> 8) & 0xff; 246 b = (rgba) & 0xff; 253 r = (rgba >> 16) & 0xff; 254 g = (rgba >> 8) & 0xff; 255 b = (rgba) & 0xff; 259 r = (rgba >> 16) & 0xff; 260 g = (rgba >> 8) & 0xff [all...] |
/external/chromium_org/chrome/browser/resources/history/ |
history.css | 99 border-color: rgba(67, 67, 67, 0.5); 167 border: 1px solid rgba(0, 0, 0, 0.25); 169 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 170 inset 0 1px 2px rgba(255, 255, 255, 0.75);
|
/external/chromium_org/chrome/browser/resources/options/ |
manage_profile_overlay.css | 60 background-color: rgba(255, 255, 255, 0.75);
|
/external/chromium_org/chrome/browser/resources/ |
policy.css | 177 border-color: rgba(0, 0, 0, 0.25);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
layersPanel.css | 70 border: 1px solid rgba(40, 40, 40, 0.8);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_format_soa.c | 261 LLVMValueRef *rgba) 287 rgba[chan] = input; 296 * \param type the desired return type for 'rgba'. The vector length 348 * convert texels to float rgba
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_format_soa.c | 261 LLVMValueRef *rgba) 287 rgba[chan] = input; 296 * \param type the desired return type for 'rgba'. The vector length 348 * convert texels to float rgba
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/css/ |
common.css | 76 outline: 1px solid rgba(0, 0, 0, 0.2); 168 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .5); 381 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .5);
|
/external/chromium_org/third_party/libwebp/dec/ |
webp.c | 504 uint8_t* const rgba, 508 if (rgba == NULL) { 515 buf.u.RGBA.rgba = rgba; 516 buf.u.RGBA.stride = stride; 517 buf.u.RGBA.size = size; 522 return rgba; 605 return WebPIsRGBMode(mode) ? output.u.RGBA.rgba : output.u.YUVA.y [all...] |
vp8l.c | 407 int rgba_stride, uint8_t* const rgba) { 412 uint8_t* const dst = rgba + num_lines_out * rgba_stride; 663 if (output->colorspace < MODE_YUV) { // convert to RGBA 664 const WebPRGBABuffer* const buf = &output->u.RGBA; 665 uint8_t* const rgba = buf->rgba + dec->last_out_row_ * buf->stride; local 668 rgba, buf->stride) : 670 io->mb_w, io->mb_h, rgba, buf->stride); [all...] |
/external/webp/src/dec/ |
webp.c | 487 uint8_t* const rgba, 491 if (rgba == NULL) { 498 buf.u.RGBA.rgba = rgba; 499 buf.u.RGBA.stride = stride; 500 buf.u.RGBA.size = size; 505 return rgba; 588 return WebPIsRGBMode(mode) ? output.u.RGBA.rgba : output.u.YUVA.y [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
api_filters.c | 677 VGuint rgba = lookupTable[i]; local 679 red = (rgba & 0xff000000)>>24; 680 green = (rgba & 0x00ff0000)>>16; 681 blue = (rgba & 0x0000ff00)>> 8; 682 alpha = (rgba & 0x000000ff)>> 0;
|
paint.c | 430 VGuint rgba) 432 p->solid.color[0] = ((rgba >> 24) & 0xff) / 255.f; 433 p->solid.color[1] = ((rgba >> 16) & 0xff) / 255.f; 434 p->solid.color[2] = ((rgba >> 8) & 0xff) / 255.f; 435 p->solid.color[3] = ((rgba >> 0) & 0xff) / 255.f;
|
mask.c | 169 int rgba = data[i * stfb->height + j]; local 171 argb = (rgba >> 8); 172 argb |= ((rgba & 0xff) << 24); 505 debug_printf("mask_fill(%d, %d, %d, %d) with rgba(%f, %f, %f, %f)\n",
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
api_filters.c | 677 VGuint rgba = lookupTable[i]; local 679 red = (rgba & 0xff000000)>>24; 680 green = (rgba & 0x00ff0000)>>16; 681 blue = (rgba & 0x0000ff00)>> 8; 682 alpha = (rgba & 0x000000ff)>> 0;
|
paint.c | 430 VGuint rgba) 432 p->solid.color[0] = ((rgba >> 24) & 0xff) / 255.f; 433 p->solid.color[1] = ((rgba >> 16) & 0xff) / 255.f; 434 p->solid.color[2] = ((rgba >> 8) & 0xff) / 255.f; 435 p->solid.color[3] = ((rgba >> 0) & 0xff) / 255.f;
|
mask.c | 169 int rgba = data[i * stfb->height + j]; local 171 argb = (rgba >> 8); 172 argb |= ((rgba & 0xff) << 24); 505 debug_printf("mask_fill(%d, %d, %d, %d) with rgba(%f, %f, %f, %f)\n",
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_drawpix.c | 406 * Draw RGBA image. 454 GLfloat *rgba = (GLfloat *) span.array->attribs[FRAG_ATTRIB_COL0]; local 466 /* get image row as float/RGBA */ 467 _mesa_unpack_color_span_float(ctx, spanWidth, GL_RGBA, rgba, 480 _swrast_write_zoomed_rgba_span(ctx, imgX, imgY, &span, rgba);
|
/external/webp/examples/ |
dwebp.c | 142 unsigned char* const rgb = buffer->u.RGBA.rgba; 143 const int stride = buffer->u.RGBA.stride; 160 unsigned char* const rgb = buffer->u.RGBA.rgba; 161 const int stride = buffer->u.RGBA.stride; 209 const unsigned char* const rgb = buffer->u.RGBA.rgba; 210 const int stride = buffer->u.RGBA.stride; 346 " -pam ......... save the raw RGBA samples as a color PAM\n [all...] |