Home
last modified time | relevance | path

Searched refs:getGlyph (Results 1 – 10 of 10) sorted by relevance

/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
DFreeTypeFontGenerator.java155 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 …]
DFreeType.java254 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/
DBitmapFont.java325 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/
DBMFontUtil.java62 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/
DGrBatchFontCache.h33 inline GrGlyph* getGlyph(const SkGlyph& skGlyph, GrGlyph::PackedID packed, in getGlyph() function
46 inline GrGlyph* getGlyph(GrGlyph::PackedID packed, in getGlyph() function
DGrTextUtils.cpp134 GrGlyph* glyph = (*strike)->getGlyph(skGlyph, id, scaler); in BmpAppendGlyph()
437 GrGlyph* glyph = (*strike)->getGlyph(skGlyph, id, scaler); in DfAppendGlyph()
DGrAtlasTextBlob_regenInBatch.cpp191 fGlyphs[glyphOffset] = strike->getGlyph(id, info->maskFormat(), *scaler); in regenInBatch()
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/
DUnicodeFont.java182 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');
DGlyph.java48 BitmapFont.Glyph g = unicodeFont.bitmapFont.getData().getGlyph((char)codePoint); in Glyph()
DGlyphPage.java143 BitmapFont.Glyph g = data.getGlyph((char)glyph.getCodePoint()); in renderGlyph()