Searched defs:numGlyphs (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/
H A DTextDropShadowCache.cpp172 int numGlyphs, float radius, const float* positions) {
180 len, numGlyphs, radius, positions);
171 get(SkPaint* paint, const char* text, uint32_t len, int numGlyphs, float radius, const float* positions) argument
H A DFontRenderer.cpp594 uint32_t startIndex, uint32_t len, int numGlyphs, uint32_t radius, const float* positions) {
613 mCurrentFont->measure(paint, text, startIndex, len, numGlyphs, &bounds, positions);
644 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, penX, penY,
678 void FontRenderer::precache(SkPaint* paint, const char* text, int numGlyphs, const mat4& matrix) { argument
680 font->precache(paint, text, numGlyphs);
688 uint32_t startIndex, uint32_t len, int numGlyphs, int x, int y,
696 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, x, y, positions);
706 uint32_t startIndex, uint32_t len, int numGlyphs, SkPath* path,
714 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, path, hOffset, vOffset);
593 renderDropShadow(SkPaint* paint, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, uint32_t radius, const float* positions) argument
687 renderPosText(SkPaint* paint, const Rect* clip, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, int x, int y, const float* positions, Rect* bounds, Functor* functor, bool forceFinish) argument
705 renderTextOnPath(SkPaint* paint, const Rect* clip, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, SkPath* path, float hOffset, float vOffset, Rect* bounds, Functor* functor) argument
/frameworks/base/libs/hwui/font/
H A DFont.cpp286 int numGlyphs, int x, int y, const float* positions) {
287 render(paint, text, start, len, numGlyphs, x, y, FRAMEBUFFER, NULL,
292 int numGlyphs, SkPath* path, float hOffset, float vOffset) {
293 if (numGlyphs == 0 || text == NULL || len == 0) {
320 while (glyphsCount < numGlyphs && penX < pathLength) {
342 int numGlyphs, Rect *bounds, const float* positions) {
348 render(paint, text, start, len, numGlyphs, 0, 0, MEASURE, NULL, 0, 0, bounds, positions);
351 void Font::precache(SkPaint* paint, const char* text, int numGlyphs) { argument
354 if (numGlyphs == 0 || text == NULL) {
359 while (glyphsCount < numGlyphs) {
285 render(SkPaint* paint, const char *text, uint32_t start, uint32_t len, int numGlyphs, int x, int y, const float* positions) argument
291 render(SkPaint* paint, const char *text, uint32_t start, uint32_t len, int numGlyphs, SkPath* path, float hOffset, float vOffset) argument
341 measure(SkPaint* paint, const char* text, uint32_t start, uint32_t len, int numGlyphs, Rect *bounds, const float* positions) argument
372 render(SkPaint* paint, const char* text, uint32_t start, uint32_t len, int numGlyphs, int x, int y, RenderMode mode, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, const float* positions) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.cpp659 unsigned int numGlyphs; local
660 hb_glyph_info_t* info = hb_buffer_get_glyph_infos(buffer, &numGlyphs);
662 ALOGD(" -- glyphs count=%d", numGlyphs);
663 for (size_t i = 0; i < numGlyphs; i++) {
730 unsigned int numGlyphs; local
731 hb_glyph_info_t* info = hb_buffer_get_glyph_infos(mBuffer, &numGlyphs);
737 ALOGD(" -- num_glyph = %d", numGlyphs);
744 for (size_t i = 0; i < numGlyphs; i++) {
820 unsigned int numGlyphs; local
821 hb_glyph_info_t* info = hb_buffer_get_glyph_infos(mBuffer, &numGlyphs);
[all...]
/frameworks/rs/
H A DrsFont.cpp162 uint32_t start, int32_t numGlyphs,
165 if (!mInitialized || numGlyphs == 0 || text == NULL || len == 0) {
180 if (numGlyphs > 0) {
181 glyphsLeft = numGlyphs;
219 if (numGlyphs > 0) {
750 uint32_t startIndex, int32_t numGlyphs,
778 currentFont->renderUTF(text, len, x, y, startIndex, numGlyphs,
161 renderUTF(const char *text, uint32_t len, int32_t x, int32_t y, uint32_t start, int32_t numGlyphs, RenderMode mode, Rect *bounds, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
749 renderText(const char *text, uint32_t len, int32_t x, int32_t y, uint32_t startIndex, int32_t numGlyphs, Font::RenderMode mode, Font::Rect *bounds, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument

Completed in 95 milliseconds