Lines Matching full:glyphs
478 Generated Glyphs may be fuzzy but better resemble their original shape.
981 When Subpixel_Text is disabled, the comma Glyphs are identical, but not evenly spaced.
982 When Subpixel_Text is enabled, the comma Glyphs are unique, but appear evenly spaced.
1095 If true, Glyphs at different sub-pixel positions may differ on pixel edge coverage.
1121 Requests, but does not require, that Glyphs respect sub-pixel positioning.
1157 If true, Glyphs may use LCD striping to improve glyph edges.
1183 Requests, but does not require, that Glyphs use LCD striping for glyph edges.
1208 #Line # custom sized bitmap Glyphs ##
1211 Font_Embedded_Bitmaps allows selecting custom sized bitmap Glyphs.
1257 If true, Font_Engine may return Glyphs from font bitmaps instead of from outlines.
1314 instructs the Font_Manager to always hint Glyphs.
1323 #Line # returns true if Glyphs are always hinted ##
1326 Glyphs.
1354 #Line # sets Glyphs to always be hinted ##
1356 instruct the Font_Manager to always hint Glyphs.
1395 using Font_Advance to position subsequent Glyphs. By default, each successive glyph
1397 Glyphs to position below the preceding glyph.
1399 Skia can translate text character codes as a series of Glyphs, but does not implement
1434 If true, Glyphs are drawn top to bottom instead of left to right.
1495 the font engine to create the bold Glyphs. Otherwise, the extra bold is computed
3570 Align affects Glyphs drawn with: SkCanvas::drawText, SkCanvas::drawPosText,
3574 as well as calls that place text Glyphs like getTextWidths and getTextPath.
3881 #Line # text encoded as characters or Glyphs ##
3952 uint16_t glyphs[SK_ARRAY_COUNT(hello32)];
3953 paint.textToGlyphs(hello32, sizeof(hello32), glyphs);
3955 canvas->drawText(glyphs, sizeof(glyphs), 10, 120, paint);
4016 Font_Metrics describe dimensions common to the Glyphs in Typeface.
4188 Minimum bounding box x value for all Glyphs.
4193 Maximum bounding box x value for all Glyphs.
4369 Returns the union of bounds of all Glyphs.
4378 #Return union of bounds of all Glyphs ##
4400 SkGlyphID glyphs[]) const
4405 Text_Encoding specifies how text represents characters or glyphs.
4406 glyphs may be nullptr, to compute the glyph count.
4418 #Param glyphs storage for glyph indices; may be nullptr ##
4420 #Return number of glyphs represented by text of length byteLength ##
4427 std::vector<SkGlyphID> glyphs;
4429 glyphs.resize(count);
4430 (void) paint.textToGlyphs(utf8, sizeof(utf8), &glyphs.front());
4433 canvas->drawText(&glyphs.front(), glyphs.size() * sizeof(SkGlyphID), 10, 40, paint);
4441 #Line # returns number of Glyphs in text ##
4442 Returns the number of Glyphs in text.
4443 Uses Text_Encoding to count the Glyphs.
4449 #Return number of Glyphs represented by text of length byteLength ##
4466 #Line # returns if all text corresponds to Glyphs ##
4477 #Param text array of characters or Glyphs ##
4532 #Method void glyphsToUnichars(const SkGlyphID glyphs[],
4534 #Line # converts Glyphs into text ##
4536 Converts glyphs into text if possible.
4543 #Param glyphs array of indices into font ##
4550 Convert UTF-8 text to glyphs; then convert glyphs to Unichar code points.
4556 SkGlyphID glyphs[count];
4557 if (count != paint.textToGlyphs(hello, count, glyphs)) {
4561 paint.glyphsToUnichars(glyphs, count, unichars);
4713 Bounds of Glyphs increase for stroked text, but text advance remains the same.
4752 #Line # geometry of Glyphs ##
4754 Text_Path describes the geometry of Glyphs used to draw text.
4771 #Param path geometry of the Glyphs ##
4809 #Param path geometry of the Glyphs ##
4814 Simplifies three Glyphs to eliminate overlaps, and strokes the result.
4835 Text_Intercepts describe the intersection of drawn text Glyphs with a pair
4846 The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
4901 The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
4921 Text intercepts draw on either side of, but not inside, Glyphs in a run.
4956 The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
5016 The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
5028 #Param blob Glyphs, positions, and text paint attributes ##
5045 run.glyphs[0] = 10;
5046 run.glyphs[1] = 20;
5047 run.glyphs[2] = 30;