Home | History | Annotate | Download | only in ports

Lines Matching defs:isBW

449     const void* draw(const SkGlyph&, bool isBW, size_t* srcRBPtr);
462 const void* HDCOffscreen::draw(const SkGlyph& glyph, bool isBW,
481 if (fBM && (fIsBW != isBW || fWidth < glyph.fWidth || fHeight < glyph.fHeight)) {
485 fIsBW = isBW;
490 int biWidth = isBW ? alignTo32(fWidth) : fWidth;
495 if (isBW) {
505 info.bmiHeader.biBitCount = isBW ? 1 : 32;
507 if (isBW) {
518 size_t srcRB = isBW ? (biWidth >> 3) : (fWidth << 2);
1313 const bool isBW = SkMask::kBW_Format == fRec.fMaskFormat;
1317 const void* bits = fOffscreen.draw(glyph, isBW, &srcRB);
1320 bits = fOffscreen.draw(glyph, isBW, &srcRB);
1327 if (!isBW) {
1355 if (isBW) {