Home | History | Annotate | Download | only in hwui

Lines Matching refs:image

232     // Copy the glyph image, taking the mask format into account
509 DropShadow image;
510 image.width = 0;
511 image.height = 0;
512 image.image = NULL;
513 image.penX = 0;
514 image.penY = 0;
517 return image;
532 return image;
560 image.width = paddedWidth;
561 image.height = paddedHeight;
562 image.image = dataBuffer;
563 image.penX = penX;
564 image.penY = penY;
566 return image;
635 void FontRenderer::blurImage(uint8_t** image, int32_t width, int32_t height, int32_t radius) {
641 Blur::horizontal(gaussian, radius, *image, scratch, width, height);
642 Blur::vertical(gaussian, radius, scratch, *image, width, height);
663 RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED, *image);
670 // replace the original image's pointer, avoiding a copy back to the original buffer
671 free(*image);
672 *image = outImage;