public static extern nk_font *nk_font_atlas_add_compressed(
     nk_font_atlas *atlas,
     IntPtr memory,
     IntPtr size,
     float height,
     nk_font_config *fconfig
     );
示例#2
0
 public static extern nk_font *nk_font_atlas_add_compressed_base85(nk_font_atlas *atlas, byte *data, float height, nk_font_config *fconfig);
示例#3
0
 public static extern nk_font *nk_font_atlas_add_default(nk_font_atlas *atlas, float height, nk_font_config *fconfig);
示例#4
0
 public static extern nk_font *nk_font_atlas_add(nk_font_atlas *atlas, nk_font_config *fconfig);
示例#5
0
 public static nk_font *nk_font_atlas_add_compressed_base85(nk_font_atlas *atlas, byte *data, float height, nk_font_config *fconfig) => _nk_font_atlas_add_compressed_base85(atlas, data, height, fconfig);
示例#6
0
 public static nk_font *nk_font_atlas_add_compressed(nk_font_atlas *atlas, IntPtr memory, IntPtr size, float height, nk_font_config *fconfig) => _nk_font_atlas_add_compressed(atlas, memory, size, height, fconfig);
示例#7
0
 public static nk_font *nk_font_atlas_add_default(nk_font_atlas *atlas, float height, nk_font_config *fconfig) => _nk_font_atlas_add_default(atlas, height, fconfig);
示例#8
0
 public static nk_font *nk_font_atlas_add(nk_font_atlas *atlas, nk_font_config *fconfig) => _nk_font_atlas_add(atlas, fconfig);