のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

2013-06-13から1日間の記事一覧

結合文字

Unicodeの結合文字メモ - 血統の森+はてな

Typeface.java

87 public static Typeface create(String familyName, int style) { 88 return new Typeface(nativeCreate(familyName, style)); 89 } 171 static JNINativeMethod gTypefaceMethods[] = { 172 { "nativeCreate", "(Ljava/lang/String;I)I", (void*)Typefac…

initSystemFontsLocked

737 static void initSystemFontsLocked() { 738 // check if we've already been called 739 if (gDefaultNormal) { 740 return; 741 } 742 743 SkASSERT(gUniqueFontID == 0); 744 745 loadFontInfoLocked(); 746 747 SkTypeface* firstInFamily = NULL; 7…