HomeSort by relevance Sort by last modified time
    Searched defs:isBW (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkRasterClip.h 23 bool isBW() const { return fIsBW; }
  /external/skia/src/ports/
SkFontHost_win.cpp 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);
    [all...]

Completed in 114 milliseconds