Home | History | Annotate | Download | only in image

Lines Matching refs:fBitmap

31     SkBitmap    fBitmap;
89 fBitmap.setConfig(config, info.fWidth, info.fHeight, rb);
90 fBitmap.setPixels(pixels);
91 fBitmap.setIsOpaque(isOpaque);
100 fBitmap.setConfig(config, info.fWidth, info.fHeight, rb);
101 fBitmap.setPixelRef(pr);
102 fBitmap.setIsOpaque(isOpaque);
106 fBitmap.eraseColor(SK_ColorTRANSPARENT);
111 return SkNEW_ARGS(SkCanvas, (fBitmap));
120 canvas->drawBitmap(fBitmap, x, y, paint);
124 return SkNewImageFromBitmap(fBitmap, fWeOwnThePixels);
130 if (SkBitmapImageGetPixelRef(this->getCachedImage()) == fBitmap.pixelRef()) {
133 fBitmap.setPixelRef(NULL, 0);
134 fBitmap.allocPixels();
136 SkBitmap prev(fBitmap);
137 prev.deepCopyTo(&fBitmap, prev.config());
139 // Now fBitmap is a deep copy of itself (and therefore different from
143 this->getCachedCanvas()->getDevice()->replaceBitmapBackendForRasterSurface(fBitmap);