HomeSort by relevance Sort by last modified time
    Searched refs:Stroker (Results 1 - 2 of 2) sorted by null

  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeType.java 98 public Stroker createStroker() {
99 long stroker = strokerNew(address); local
100 if(stroker == 0) throw new GdxRuntimeException("Couldn't create FreeType stroker");
101 return new Stroker(stroker);
105 FT_Stroker stroker;
106 FT_Error error = FT_Stroker_New((FT_Library)library, &stroker);
108 else return (jlong)stroker;
499 public void strokeBorder(Stroker stroker, boolean inside) {
    [all...]
FreeTypeFontGenerator.java 44 import com.badlogic.gdx.graphics.g2d.freetype.FreeType.Stroker;
382 Stroker stroker = null; local
384 stroker = library.createStroker();
385 stroker.set((int)(parameter.borderWidth * 64f),
390 Glyph missingGlyph = createGlyph('\0', data, parameter, stroker, baseLine, packer);
414 Glyph glyph = createGlyph(c, data, parameter, stroker, baseLine, packer);
427 if (stroker != null && !incremental) stroker.dispose();
432 data.stroker = stroker;
641 Stroker stroker; field in class:FreeTypeFontGenerator.FreeTypeBitmapFontData
    [all...]

Completed in 179 milliseconds