Home | History | Annotate | Download | only in gm

Lines Matching refs:fBitmap

32         fBitmap.setConfig(SkBitmap::kARGB_8888_Config, 80, 80);
33 fBitmap.allocPixels();
34 SkDevice device(fBitmap);
133 drawClippedBitmap(canvas, fBitmap, paint, SkIntToScalar(x), SkIntToScalar(y));
134 x += fBitmap.width() + MARGIN;
135 if (x + fBitmap.width() > WIDTH) {
137 y += fBitmap.height() + MARGIN;
144 drawClippedBitmap(canvas, fBitmap, paint, SkIntToScalar(x), SkIntToScalar(y));
145 x += fBitmap.width() + MARGIN;
146 if (x + fBitmap.width() > WIDTH) {
148 y += fBitmap.height() + MARGIN;
153 drawClippedBitmap(canvas, fBitmap, paint, SkIntToScalar(x), SkIntToScalar(y));
154 x += fBitmap.width() + MARGIN;
155 if (x + fBitmap.width() > WIDTH) {
157 y += fBitmap.height() + MARGIN;
160 SkAutoTUnref<SkImageFilter> foreground(SkNEW_ARGS(SkBitmapSource, (fBitmap)));
172 SkIntToScalar(fBitmap.width() + 4),
173 SkIntToScalar(fBitmap.height() + 4)));
176 x += fBitmap.width() + MARGIN;
177 if (x + fBitmap.width() > WIDTH) {
179 y += fBitmap.height() + MARGIN;
188 SkIntToScalar(fBitmap.width() + 4),
189 SkIntToScalar(fBitmap.height() + 4)));
195 SkBitmap fBitmap, fCheckerboard;