예제 #1
0
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 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
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 public static extern int al_get_ustr_width(ref Font f, UstringHandle ustr);
예제 #3
0
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 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
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 public static extern int al_get_text_width(ref Font f, [MarshalAs(UnmanagedType.LPWStr)] string str);
예제 #5
0
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 public static extern int al_get_font_descent(ref Font f);
예제 #6
0
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 public static extern int al_get_font_line_height(ref Font f);
예제 #7
0
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 public static extern void al_draw_ustr(ref Font font, Color color, float x, float y, int flags, UstringHandle ustr);
예제 #8
0
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 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
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 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
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 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
파일: Font.cs 프로젝트: Skrylar/Allegro5Net
 public static extern void al_destroy_font(ref Font f);