MCPcopy Create free account
hub / github.com/android/ndk-samples / MeasureText

Method MeasureText

endless-tunnel/app/src/main/cpp/text_renderer.cpp:81–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81void TextRenderer::MeasureText(const char* str, float fontScale,
82 float* outWidth,
83 float* outHeight) { // static!
84 int rows, cols;
85 _count_rows_cols(str, &cols, &rows);
86 if (outWidth) {
87 *outWidth = cols * ALPHABET_GLYPH_COLS * ALPHABET_SCALE * fontScale;
88 }
89 if (outHeight) {
90 *outHeight = rows * ALPHABET_GLYPH_ROWS * ALPHABET_SCALE * fontScale;
91 }
92}
93
94TextRenderer* TextRenderer::RenderText(const char* str, float centerX,
95 float centerY) {

Callers

nothing calls this directly

Calls 1

_count_rows_colsFunction · 0.85

Tested by

no test coverage detected