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.cpp543 void RecordingCanvas::drawGlyphs(const uint16_t* glyphs, const float* positions, int glyphCount, argument
546 if (!glyphs || !positions || glyphCount <= 0 || paint.nothingToDraw()) return;
547 glyphs = refBuffer<glyph_t>(glyphs, glyphCount);
548 positions = refBuffer<float>(positions, glyphCount * 2);
555 refPaint(&paint), glyphs, positions, glyphCount, x, y)); local
/frameworks/base/libs/hwui/hwui/
H A DCanvas.cpp112 size_t glyphCount = end - start; local
124 canvas->drawGlyphs(glyphs + start, pos + (2 * start), glyphCount, outlinePaint, x, y,
131 canvas->drawGlyphs(glyphs + start, pos + (2 * start), glyphCount, innerPaint, x, y,
135 canvas->drawGlyphs(glyphs + start, pos + (2 * start), glyphCount, paint, x, y,

Completed in 619 milliseconds