diff -ru src/cairo-quartz-font.c src/cairo-quartz-font.c
|
|
|
|
| 775 | 775 | * |
| 776 | 776 | * Since: 1.6 |
| 777 | 777 | **/ |
| | 778 | |
| | 779 | #if !__LP64__ |
| 778 | 780 | cairo_font_face_t * |
| 779 | 781 | cairo_quartz_font_face_create_for_atsu_font_id (ATSUFontID font_id) |
| 780 | 782 | { |
| … |
… |
|
| 792 | 794 | { |
| 793 | 795 | return cairo_quartz_font_face_create_for_atsu_font_id (font_id); |
| 794 | 796 | } |
| | 797 | #endif |
diff -ru src/cairo-quartz.h src/cairo-quartz.h
|
|
|
|
| 66 | 66 | cairo_public cairo_font_face_t * |
| 67 | 67 | cairo_quartz_font_face_create_for_cgfont (CGFontRef font); |
| 68 | 68 | |
| | 69 | #if !__LP64__ |
| 69 | 70 | cairo_public cairo_font_face_t * |
| 70 | 71 | cairo_quartz_font_face_create_for_atsu_font_id (ATSUFontID font_id); |
| | 72 | #endif |
| 71 | 73 | |
| 72 | 74 | #endif /* CAIRO_HAS_QUARTZ_FONT */ |
| 73 | 75 | |