HomeSort by relevance Sort by last modified time
    Searched full:rightglyph (Results 1 - 3 of 3) sorted by null

  /external/icu/icu4c/source/layoutex/
ParagraphLayout.cpp 1056 // make the minimum one be leftGlyph and the maximum one be rightGlyph.
1059 le_int32 rightGlyph = -1;
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/
com.badlogic.gdx.graphics.g2d.freetype.FreeType.cpp 242 JNIEXPORT jint JNICALL Java_com_badlogic_gdx_graphics_g2d_freetype_FreeType_00024Face_getKerning(JNIEnv* env, jclass clazz, jlong face, jint leftGlyph, jint rightGlyph, jint kernMode) {
248 FT_Error error = FT_Get_Kerning((FT_Face)face, leftGlyph, rightGlyph, kernMode, &kerning);
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeType.java 278 public int getKerning(int leftGlyph, int rightGlyph, int kernMode) {
279 return getKerning(address, leftGlyph, rightGlyph, kernMode);
282 private static native int getKerning(long face, int leftGlyph, int rightGlyph, int kernMode); /*
284 FT_Error error = FT_Get_Kerning((FT_Face)face, leftGlyph, rightGlyph, kernMode, &kerning);

Completed in 89 milliseconds