Home | History | Annotate | Download | only in core

Lines Matching defs:bitmap

194              * flatten the pixels in a bitmap shader.
774 const SkBitmap& bitmap = getBitmap(reader);
776 canvas.drawBitmap(bitmap, loc.fX, loc.fY, paint);
780 const SkBitmap& bitmap = getBitmap(reader);
783 canvas.drawBitmapRectToRect(bitmap, src, dst, paint);
787 const SkBitmap& bitmap = getBitmap(reader);
789 canvas.drawBitmapMatrix(bitmap, *matrix, paint);
793 const SkBitmap& bitmap = getBitmap(reader);
796 canvas.drawBitmapNine(bitmap, src, dst, paint);
878 const SkBitmap& bitmap = getBitmap(reader);
881 canvas.drawSprite(bitmap, left, top, paint);
1016 // const SkBitmap& bitmap = fBitmaps[index];
1017 result += sizeof(SkBitmap); // bitmap->size();
1055 void SkPicturePlayback::dumpBitmap(const SkBitmap& bitmap) const {
1059 "BitmapData bitmap%p = {", &bitmap);
1061 "{kWidth, %d}, ", bitmap.width());
1063 "{kHeight, %d}, ", bitmap.height());
1065 "{kRowBytes, %d}, ", bitmap.rowBytes());
1464 const SkBitmap& bitmap = fBitmaps[index];
1465 dumpBitmap(bitmap);
1472 "bitmap%p, ", &fBitmaps[index]);