Пример #1
0
 public static extern void al_get_ustr_dimensions(ref Font f, UstringHandle text, ref int bbx, ref int bby, ref int bbw, ref int bbh);
Пример #2
0
 public static extern int al_get_ustr_width(ref Font f, UstringHandle ustr);
Пример #3
0
 public static extern void al_get_text_dimensions(ref Font f, [MarshalAs(UnmanagedType.LPWStr)] string text, ref int bbx, ref int bby, ref int bbw, ref int bbh);
Пример #4
0
 public static extern int al_get_text_width(ref Font f, [MarshalAs(UnmanagedType.LPWStr)] string str);
Пример #5
0
 public static extern int al_get_font_descent(ref Font f);
Пример #6
0
 public static extern int al_get_font_line_height(ref Font f);
Пример #7
0
 public static extern void al_draw_ustr(ref Font font, Color color, float x, float y, int flags, UstringHandle ustr);
Пример #8
0
 public static extern void al_draw_text(ref Font font, Color color, float x, float y, int flags, [MarshalAs(UnmanagedType.LPWStr)] string text);
Пример #9
0
 public static extern void al_draw_justified_ustr(ref Font font, Color color, float x1, float x2, float y, float diff, int flags, UstringHandle text);
Пример #10
0
 public static extern void al_draw_justified_text(ref Font font, Color color, float x1, float x2, float y, float diff, int flags, [MarshalAs(UnmanagedType.LPWStr)] string text);
Пример #11
0
 public static extern void al_destroy_font(ref Font f);