Searched defs:glyphCount (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
H A DTextDropShadowCache.h37 ShadowText(): glyphCount(0), radius(0.0f), textSize(0.0f), typeface(nullptr),
42 ShadowText(const SkPaint* paint, float radius, uint32_t glyphCount, const glyph_t* srcGlyphs, argument
44 : glyphCount(glyphCount)
71 str.setTo(reinterpret_cast<const char16_t*>(glyphs), glyphCount); local
75 positionsCopy.appendArray(positions, glyphCount * 2);
80 uint32_t glyphCount; member in struct:android::uirenderer::ShadowText
H A DRecordedOp.h385 TextOp(BASE_PARAMS, const glyph_t* glyphs, const float* positions, int glyphCount, argument
390 , glyphCount(glyphCount)
395 const int glyphCount; member in struct:android::uirenderer::TextOp
403 const glyph_t* glyphs, int glyphCount, const SkPath* path, float hOffset, float vOffset)
406 , glyphCount(glyphCount)
411 const int glyphCount; member in struct:android::uirenderer::TextOnPathOp
402 TextOnPathOp(const Matrix4& localMatrix, const ClipBase* localClip, const SkPaint* paint, const glyph_t* glyphs, int glyphCount, const SkPath* path, float hOffset, float vOffset) argument
H A DRecordingCanvas.cpp546 void RecordingCanvas::drawGlyphs(const uint16_t* glyphs, const float* positions, int glyphCount, argument
549 if (!glyphs || !positions || glyphCount <= 0 || PaintUtils::paintWillNotDrawText(paint)) return;
550 glyphs = refBuffer<glyph_t>(glyphs, glyphCount);
551 positions = refBuffer<float>(positions, glyphCount * 2);
558 refPaint(&paint), glyphs, positions, glyphCount, x, y)); local
562 void RecordingCanvas::drawGlyphsOnPath(const uint16_t* glyphs, int glyphCount, const SkPath& path, argument
564 if (!glyphs || glyphCount <= 0 || PaintUtils::paintWillNotDrawText(paint)) return;
565 glyphs = refBuffer<glyph_t>(glyphs, glyphCount);
569 refPaint(&paint), glyphs, glyphCount, refPath(&path), hOffset, vOffset));
/frameworks/base/libs/hwui/hwui/
H A DCanvas.cpp110 size_t glyphCount = end - start; local
122 canvas->drawGlyphs(glyphs + start, pos + (2 * start), glyphCount, outlinePaint, x, y,
129 canvas->drawGlyphs(glyphs + start, pos + (2 * start), glyphCount, innerPaint, x, y,
133 canvas->drawGlyphs(glyphs + start, pos + (2 * start), glyphCount, paint, x, y,

Completed in 83 milliseconds