Lines Matching refs:isBW
443 const void* draw(const SkGlyph&, bool isBW, size_t* srcRBPtr);
456 const void* HDCOffscreen::draw(const SkGlyph& glyph, bool isBW, in draw() argument
475 if (fBM && (fIsBW != isBW || fWidth < glyph.fWidth || fHeight < glyph.fHeight)) { in draw()
479 fIsBW = isBW; in draw()
484 int biWidth = isBW ? alignTo32(fWidth) : fWidth; in draw()
489 if (isBW) { in draw()
499 info.bmiHeader.biBitCount = isBW ? 1 : 32; in draw()
501 if (isBW) { in draw()
512 size_t srcRB = isBW ? (biWidth >> 3) : (fWidth << 2); in draw()
1242 const bool isBW = SkMask::kBW_Format == fRec.fMaskFormat; in generateImage() local
1246 const void* bits = fOffscreen.draw(glyph, isBW, &srcRB); in generateImage()
1249 bits = fOffscreen.draw(glyph, isBW, &srcRB); in generateImage()
1256 if (!isBW) { in generateImage()
1284 if (isBW) { in generateImage()