Home
last modified time | relevance | path

Searched refs:glyphsCount (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/font/
DFont.cpp313 int glyphsCount = 0; in render() local
334 while (glyphsCount < numGlyphs && penX < pathLength) { in render()
351 glyphsCount++; in render()
372 int glyphsCount = 0; in precache() local
373 while (glyphsCount < numGlyphs) { in precache()
382 glyphsCount++; in precache()
404 int glyphsCount = 0; in render() local
408 while (glyphsCount < numGlyphs) { in render()
421 int penX = x + (int) roundf(positions[(glyphsCount << 1)]); in render()
422 int penY = y + (int) roundf(positions[(glyphsCount << 1) + 1]); in render()
[all …]
/frameworks/base/core/jni/
Dandroid_view_GLES20Canvas.cpp607 size_t glyphsCount = end - start; in operator ()() local
608 int bytesCount = glyphsCount * sizeof(jchar); in operator ()()
609 renderer->drawText((const char*) (glyphs + start), bytesCount, glyphsCount, in operator ()()