Lines Matching refs:fBitmap
27 : fBitmap(bitmap), fLeakyProperties(SkDeviceProperties::MakeDefault())
37 : fBitmap(bitmap), fLeakyProperties(deviceProperties) in SkDevice()
55 fBitmap.setConfig(config, width, height); in SkDevice()
56 fBitmap.allocPixels(); in SkDevice()
57 fBitmap.setIsOpaque(isOpaque); in SkDevice()
59 fBitmap.eraseColor(SK_ColorTRANSPARENT); in SkDevice()
73 fBitmap.setConfig(config, width, height); in SkDevice()
74 fBitmap.allocPixels(); in SkDevice()
75 fBitmap.setIsOpaque(isOpaque); in SkDevice()
77 fBitmap.eraseColor(SK_ColorTRANSPARENT); in SkDevice()
86 SkASSERT(bm.width() == fBitmap.width()); in replaceBitmapBackendForRasterSurface()
87 SkASSERT(bm.height() == fBitmap.height()); in replaceBitmapBackendForRasterSurface()
88 fBitmap = bm; // intent is to use bm's pixelRef (and rowbytes/config) in replaceBitmapBackendForRasterSurface()
89 fBitmap.lockPixels(); in replaceBitmapBackendForRasterSurface()
123 if (fBitmap.lockPixelsAreWritable()) { in lockPixels()
124 fBitmap.lockPixels(); in lockPixels()
129 if (fBitmap.lockPixelsAreWritable()) { in unlockPixels()
130 fBitmap.unlockPixels(); in unlockPixels()
135 const SkBitmap& bitmap = this->onAccessBitmap(&fBitmap); in accessBitmap()
145 fBitmap.width(), fBitmap.height()); in getGlobalBounds()
150 fBitmap.eraseColor(color); in clear()
334 SkRasterClip clip(SkIRect::MakeWH(fBitmap.width(), fBitmap.height())); in writePixels()
338 draw.fBitmap = &fBitmap; // canvas should have already called accessBitmap in writePixels()
531 if (SkBitmap::kARGB_8888_Config != fBitmap.config() || in filterTextFlags()