Home | History | Annotate | Download | only in image

Lines Matching refs:fBitmap

64     SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); }
69 SkBitmap fBitmap;
91 fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes);
92 fBitmap.setPixelRef(SkNEW_ARGS(SkDataPixelRef, (data)))->unref();
93 fBitmap.setIsOpaque(isOpaque);
94 fBitmap.setImmutable();
102 fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes);
103 fBitmap.setPixelRef(pr);
104 fBitmap.setIsOpaque(isOpaque);
110 canvas->drawBitmap(fBitmap, x, y, paint);
114 canvas->drawBitmapRectToRect(fBitmap, src, dst, paint);
118 *dst = fBitmap;