Home | History | Annotate | Download | only in docs

Lines Matching full:glyphs

478     Generated Glyphs may be fuzzy but better resemble their original shape.
976 When Subpixel_Text is disabled, the comma Glyphs are identical, but not evenly spaced.
977 When Subpixel_Text is enabled, the comma Glyphs are unique, but appear evenly spaced.
1090 If true, Glyphs at different sub-pixel positions may differ on pixel edge coverage.
1116 Requests, but does not require, that Glyphs respect sub-pixel positioning.
1153 If true, Glyphs may use LCD striping to improve glyph edges.
1179 Requests, but does not require, that Glyphs use LCD striping for glyph edges.
1204 #Line # custom sized bitmap Glyphs ##
1207 Font_Embedded_Bitmaps allows selecting custom sized bitmap Glyphs.
1253 If true, Font_Engine may return Glyphs from font bitmaps instead of from outlines.
1310 instructs the Font_Manager to always hint Glyphs.
1319 #Line # returns true if Glyphs are always hinted ##
1322 Glyphs.
1350 #Line # sets Glyphs to always be hinted ##
1352 instruct the Font_Manager to always hint Glyphs.
1391 using Font_Advance to position subsequent Glyphs. By default, each successive glyph
1393 Glyphs to position below the preceding glyph.
1395 Skia can translate text character codes as a series of Glyphs, but does not implement
1430 If true, Glyphs are drawn top to bottom instead of left to right.
1491 the font engine to create the bold Glyphs. Otherwise, the extra bold is computed
3549 Align affects Glyphs drawn with: SkCanvas::drawText, SkCanvas::drawPosText,
3553 as well as calls that place text Glyphs like getTextWidths and getTextPath.
3860 #Line # text encoded as characters or Glyphs ##
3931 uint16_t glyphs[SK_ARRAY_COUNT(hello32)];
3932 paint.textToGlyphs(hello32, sizeof(hello32), glyphs);
3934 canvas->drawText(glyphs, sizeof(glyphs), 10, 120, paint);
3995 Font_Metrics describe dimensions common to the Glyphs in Typeface.
4167 Minimum bounding box x value for all Glyphs.
4172 Maximum bounding box x value for all Glyphs.
4348 Returns the union of bounds of all Glyphs.
4357 #Return union of bounds of all Glyphs ##
4379 SkGlyphID glyphs[]) const
4385 Text_Encoding specifies how text represents characters or glyphs.
4386 glyphs may be nullptr, to compute the glyph count.
4398 #Param glyphs storage for glyph indices; may be nullptr ##
4400 #Return number of glyphs represented by text of length byteLength ##
4407 std::vector<SkGlyphID> glyphs;
4409 glyphs.resize(count);
4410 (void) paint.textToGlyphs(utf8, sizeof(utf8), &glyphs.front());
4413 canvas->drawText(&glyphs.front(), glyphs.size() * sizeof(SkGlyphID), 10, 40, paint);
4421 #Line # returns number of Glyphs in text ##
4422 Returns the number of Glyphs in text.
4423 Uses Text_Encoding to count the Glyphs.
4429 #Return number of Glyphs represented by text of length byteLength ##
4446 #Line # returns if all text corresponds to Glyphs ##
4457 #Param text array of characters or Glyphs ##
4512 #Method void glyphsToUnichars(const SkGlyphID glyphs[],
4515 #Line # converts Glyphs into text ##
4517 Converts glyphs into text if possible.
4524 #Param glyphs array of indices into font ##
4531 Convert UTF-8 text to glyphs; then convert glyphs to Unichar code points.
4537 SkGlyphID glyphs[count];
4538 if (count != paint.textToGlyphs(hello, count, glyphs)) {
4542 paint.glyphsToUnichars(glyphs, count, unichars);
4694 Bounds of Glyphs increase for stroked text, but text advance remains the same.
4733 #Line # geometry of Glyphs ##
4735 Text_Path describes the geometry of Glyphs used to draw text.
4752 #Param path geometry of the Glyphs ##
4790 #Param path geometry of the Glyphs ##
4795 Simplifies three Glyphs to eliminate overlaps, and strokes the result.
4816 Text_Intercepts describe the intersection of drawn text Glyphs with a pair
4827 The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
4882 The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
4902 Text intercepts draw on either side of, but not inside, Glyphs in a run.
4937 The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
4997 The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
5009 #Param blob Glyphs, positions, and text paint attributes ##
5026 run.glyphs[0] = 10;
5027 run.glyphs[1] = 20;
5028 run.glyphs[2] = 30;