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

/frameworks/base/libs/hwui/
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.cpp543 void RecordingCanvas::drawGlyphs(ReadGlyphFunc glyphFunc, int glyphCount, const SkPaint& paint, argument
546 if (glyphCount <= 0 || paint.nothingToDraw()) return;
547 uint16_t* glyphs = (glyph_t*)alloc().alloc<glyph_t>(glyphCount * sizeof(glyph_t));
548 float* positions = (float*)alloc().alloc<float>(2 * glyphCount * sizeof(float));
556 refPaint(&paint), glyphs, positions, glyphCount, x, y)); local
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
/frameworks/base/libs/hwui/hwui/
H A DCanvas.cpp123 size_t glyphCount = end - start; local
135 canvas->drawGlyphs(glyphFunc, glyphCount, outlinePaint, x, y, bounds.mLeft, bounds.mTop,
142 canvas->drawGlyphs(glyphFunc, glyphCount, innerPaint, x, y, bounds.mLeft, bounds.mTop,
146 canvas->drawGlyphs(glyphFunc, glyphCount, paint, x, y, bounds.mLeft, bounds.mTop,

Completed in 94 milliseconds