Lines Matching refs:isBW
439 const void* draw(const SkGlyph&, bool isBW, size_t* srcRBPtr);
452 const void* HDCOffscreen::draw(const SkGlyph& glyph, bool isBW, in draw() argument
471 if (fBM && (fIsBW != isBW || fWidth < glyph.fWidth || fHeight < glyph.fHeight)) { in draw()
475 fIsBW = isBW; in draw()
480 int biWidth = isBW ? alignTo32(fWidth) : fWidth; in draw()
485 if (isBW) { in draw()
495 info.bmiHeader.biBitCount = isBW ? 1 : 32; in draw()
497 if (isBW) { in draw()
508 size_t srcRB = isBW ? (biWidth >> 3) : (fWidth << 2); in draw()
1235 const bool isBW = SkMask::kBW_Format == fRec.fMaskFormat; in generateImage() local
1239 const void* bits = fOffscreen.draw(glyph, isBW, &srcRB); in generateImage()
1242 bits = fOffscreen.draw(glyph, isBW, &srcRB); in generateImage()
1249 if (!isBW) { in generateImage()
1277 if (isBW) { in generateImage()