Lines Matching refs:isBW
441 const void* draw(const SkGlyph&, bool isBW, size_t* srcRBPtr);
454 const void* HDCOffscreen::draw(const SkGlyph& glyph, bool isBW, in draw() argument
473 if (fBM && (fIsBW != isBW || fWidth < glyph.fWidth || fHeight < glyph.fHeight)) { in draw()
477 fIsBW = isBW; in draw()
482 int biWidth = isBW ? alignTo32(fWidth) : fWidth; in draw()
487 if (isBW) { in draw()
497 info.bmiHeader.biBitCount = isBW ? 1 : 32; in draw()
499 if (isBW) { in draw()
510 size_t srcRB = isBW ? (biWidth >> 3) : (fWidth << 2); in draw()
1232 const bool isBW = SkMask::kBW_Format == fRec.fMaskFormat; in generateImage() local
1236 const void* bits = fOffscreen.draw(glyph, isBW, &srcRB); in generateImage()
1239 bits = fOffscreen.draw(glyph, isBW, &srcRB); in generateImage()
1246 if (!isBW) { in generateImage()
1274 if (isBW) { in generateImage()