mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-06 08:08:04 +02:00
[atsui] Document ATSUI
Add cairo_atsui_font_face_create_for_atsu_font_id and ATSUI to the documentation. Don't enable it yet, since this is still unsupported.
This commit is contained in:
parent
fd1edaa5d3
commit
817d4b0c9a
2 changed files with 14 additions and 1 deletions
|
|
@ -2,7 +2,7 @@
|
|||
ATSUI Fonts
|
||||
|
||||
<!-- ##### SECTION Short_Description ##### -->
|
||||
|
||||
Font support for ATSUI on OS X
|
||||
|
||||
<!-- ##### SECTION Long_Description ##### -->
|
||||
<para>
|
||||
|
|
|
|||
|
|
@ -129,6 +129,19 @@ static const cairo_font_face_backend_t _cairo_atsui_font_face_backend = {
|
|||
_cairo_atsui_font_face_scaled_font_create
|
||||
};
|
||||
|
||||
/**
|
||||
* cairo_atsui_font_face_create_for_atsu_font_id
|
||||
* @font_id: an ATSUFontID for the font.
|
||||
*
|
||||
* Creates a new font for the ATSUI font backend based on an
|
||||
* #ATSUFontID. This font can then be used with
|
||||
* cairo_set_font_face() or cairo_scaled_font_create().
|
||||
*
|
||||
* Return value: a newly created #cairo_font_face_t. Free with
|
||||
* cairo_font_face_destroy() when you are done using it.
|
||||
*
|
||||
* Since: 1.4
|
||||
**/
|
||||
cairo_font_face_t *
|
||||
cairo_atsui_font_face_create_for_atsu_font_id (ATSUFontID font_id)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue