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

  /frameworks/base/libs/hwui/
FontRenderer.h 118 image(dropShadow.image), penX(dropShadow.penX),
125 int32_t penX;
FontRenderer.cpp 602 image.penX = 0;
639 int penX = intRadius - bounds.left;
646 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, penX, penY,
658 image.penX = penX;
  /frameworks/base/libs/hwui/font/
Font.cpp 316 float penX = 0.0f;
331 penX += pathOffset - textWidth;
334 while (glyphsCount < numGlyphs && penX < pathLength) {
342 penX += SkFixedToFloat(AUTO_KERN(prevRsbDelta, cachedGlyph->mLsbDelta));
346 drawCachedGlyph(cachedGlyph, penX, hOffset, vOffset, measure, &position, &tangent);
349 penX += SkFixedToFloat(cachedGlyph->mAdvanceX);
421 int penX = x + (int) roundf(positions[(glyphsCount << 1)]);
424 (*this.*render)(cachedGlyph, penX, penY,
  /frameworks/rs/
rsFont.cpp 178 int32_t penX = x, penY = y;
205 drawCachedGlyph(cachedGlyph, penX, penY);
208 drawCachedGlyph(cachedGlyph, penX, penY, bitmap, bitmapW, bitmapH);
211 measureCachedGlyph(cachedGlyph, penX, penY, bounds);
216 penX += (cachedGlyph->mAdvanceX >> 6);

Completed in 588 milliseconds