Home | History | Annotate | Download | only in ports

Lines Matching defs:isBW

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