/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/ |
D | FreeTypeFontGenerator.java | 155 GlyphSlot slot = face.getGlyph(); in checkForBitmapFont() 240 GlyphSlot slot = face.getGlyph(); in generateGlyphAndBitmap() 316 int lh = FreeType.toInt(face.getGlyph().getMetrics().getHeight()); in generateData() 325 data.spaceWidth = FreeType.toInt(face.getGlyph().getMetrics().getHoriAdvance()); in generateData() 333 data.xHeight = FreeType.toInt(face.getGlyph().getMetrics().getHeight()); in generateData() 341 data.capHeight = FreeType.toInt(face.getGlyph().getMetrics().getHeight()); in generateData() 399 …int height = loadChar(characters[i], flags) ? FreeType.toInt(face.getGlyph().getMetrics().getHeigh… in generateData() 441 Glyph first = data.getGlyph(firstChar); in generateData() 446 Glyph second = data.getGlyph(secondChar); in generateData() 466 Glyph spaceGlyph = data.getGlyph(' '); in generateData() [all …]
|
D | FreeType.java | 254 public GlyphSlot getGlyph() { in getGlyph() method in FreeType.Face 255 return new GlyphSlot(getGlyph(address)); in getGlyph() 258 private static native long getGlyph(long face); /* in getGlyph() method in FreeType.Face 469 public Glyph getGlyph() { in getGlyph() method in FreeType.GlyphSlot 470 long glyph = getGlyph(address); in getGlyph() 475 private static native long getGlyph(long glyphSlot); /* in getGlyph() method in FreeType.GlyphSlot
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
D | BitmapFont.java | 325 Glyph g = data.getGlyph(glyphs.charAt(index)); in setFixedWidthGlyphs() 329 Glyph g = data.getGlyph(glyphs.charAt(index)); in setFixedWidthGlyphs() 610 Glyph glyph = getGlyph((char)first); in load() 618 Glyph spaceGlyph = getGlyph(' '); in load() 622 Glyph xadvanceGlyph = getGlyph('l'); in load() 635 xGlyph = getGlyph(xChar); in load() 643 capGlyph = getGlyph(capChar); in load() 759 return getGlyph(ch) != null; in hasGlyph() 765 public Glyph getGlyph (char ch) { in getGlyph() method in BitmapFont.BitmapFontData 791 Glyph glyph = getGlyph(ch); in getGlyphs()
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/ |
D | BMFontUtil.java | 62 getGlyph(' '); in save() 63 getGlyph('\u0000'); in save() 190 private Glyph getGlyph (char c) { in getGlyph() method in BMFontUtil 195 return unicodeFont.getGlyph(vector.getGlyphCode(0), c, bounds, vector, 0); in getGlyph()
|
/external/skia/src/gpu/text/ |
D | GrBatchFontCache.h | 33 inline GrGlyph* getGlyph(const SkGlyph& skGlyph, GrGlyph::PackedID packed, in getGlyph() function 46 inline GrGlyph* getGlyph(GrGlyph::PackedID packed, in getGlyph() function
|
D | GrTextUtils.cpp | 134 GrGlyph* glyph = (*strike)->getGlyph(skGlyph, id, scaler); in BmpAppendGlyph() 437 GrGlyph* glyph = (*strike)->getGlyph(skGlyph, id, scaler); in DfAppendGlyph()
|
D | GrAtlasTextBlob_regenInBatch.cpp | 191 fGlyphs[glyphOffset] = strike->getGlyph(id, info->maskFormat(), *scaler); in regenInBatch()
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/ |
D | UnicodeFont.java | 182 getGlyph(vector.getGlyphCode(i), codePoint, bounds, vector, i); in addGlyphs() 330 Glyph glyph = getGlyph(vector.getGlyphCode(glyphIndex), codePoint, bounds, vector, glyphIndex); in drawUnicode() 385 …public Glyph getGlyph (int glyphCode, int codePoint, Rectangle bounds, GlyphVector vector, int ind… in getGlyph() method in UnicodeFont 649 bitmapFont.getData().missingGlyph = bitmapFont.getData().getGlyph('\ufffd');
|
D | Glyph.java | 48 BitmapFont.Glyph g = unicodeFont.bitmapFont.getData().getGlyph((char)codePoint); in Glyph()
|
D | GlyphPage.java | 143 BitmapFont.Glyph g = data.getGlyph((char)glyph.getCodePoint()); in renderGlyph()
|