diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2008-06-26 16:15:12 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2008-06-26 16:20:59 -0400 |
commit | 047566fd526f7936a49b630ed47c570dd70e837f (patch) | |
tree | 21a2bb01dbb51b89b7dc1a5ec14e19880bfc77a6 /src/cairo-misc.c | |
parent | dff0dd0c63e530e21471531299a8f260cf88f001 (diff) |
Add cairo_show_text_glyphs API
New public API:
cairo_text_cluster_t
cairo_has_show_text_glyphs()
cairo_show_text_glyphs()
Add accompanying gstate and surface functions, and surface backend methods.
No backends implement them just yet.
Diffstat (limited to 'src/cairo-misc.c')
-rw-r--r-- | src/cairo-misc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cairo-misc.c b/src/cairo-misc.c index 30686a01..71338bff 100644 --- a/src/cairo-misc.c +++ b/src/cairo-misc.c @@ -111,6 +111,8 @@ cairo_status_to_string (cairo_status_t status) return "error occurred in a user-font callback function"; case CAIRO_STATUS_NEGATIVE_COUNT: return "negative number used where it is not allowed"; + case CAIRO_STATUS_INVALID_CLUSTERS: + return "input clusters do not represent the accompanying text and glyph arrays"; } return "<unknown error status>"; |