Home | History | Annotate | Download | only in debugger

Lines Matching defs:mBitmap

22     SkString* mBitmap = new SkString("SkBitmap: ");
23 mBitmap->append("W: ");
24 mBitmap->appendS32(bitmap.width());
25 mBitmap->append(" H: ");
26 mBitmap->appendS32(bitmap.height());
33 mBitmap->append(" ColorType: ");
34 mBitmap->append(gColorTypeStrings[bitmap.colorType()]);
37 mBitmap->append(" opaque");
39 mBitmap->append(" not-opaque");
43 mBitmap->append(" immutable");
45 mBitmap->append(" not-immutable");
49 mBitmap->append(" volatile");
51 mBitmap->append(" not-volatile");
54 mBitmap->append(" genID: ");
55 mBitmap->appendS32(bitmap.getGenerationID());
57 return mBitmap;