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

  /external/chromium_org/third_party/skia/src/core/
SkRasterClip.h 23 bool isBW() const { return fIsBW; }
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_win.cpp 455 const void* draw(const SkGlyph&, bool isBW, size_t* srcRBPtr);
468 const void* HDCOffscreen::draw(const SkGlyph& glyph, bool isBW,
487 if (fBM && (fIsBW != isBW || fWidth < glyph.fWidth || fHeight < glyph.fHeight)) {
491 fIsBW = isBW;
496 int biWidth = isBW ? alignTo32(fWidth) : fWidth;
501 if (isBW) {
511 info.bmiHeader.biBitCount = isBW ? 1 : 32;
513 if (isBW) {
524 size_t srcRB = isBW ? (biWidth >> 3) : (fWidth << 2);
    [all...]

Completed in 108 milliseconds