diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-02-06 13:50:10 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-02-06 13:50:10 +0000 |
commit | 522ce4d5b39e325471edf77cea9ad15ed98505af (patch) | |
tree | 1e7c3eba8911f6e795ba6f364caba8a1d21702a4 /examples/viewer-pangoxft.c | |
parent | 8c71138ba5500a3d1bf446357992e8f165101173 (diff) | |
download | pango-522ce4d5b39e325471edf77cea9ad15ed98505af.tar.gz |
If NULL is passed to _copy, return NULL with no warning. If NULL is passed
2006-02-06 Behdad Esfahbod <behdad@gnome.org>
* pango/pango-utils.c (pango_matrix_copy, pango_matrix_free): If
NULL is passed to _copy, return NULL with no warning. If NULL is
passed to _free, do nothing with no warning. Docs updated.
* examples/viewer-pangoxft.c (render_callback): Multiply x,y by
PANGO_SCALE, as pango_xft_render_layout takes coordinates in
Pango units weirdly enough.
* viewer-pangocairo.c (render_callback): Do cairo_translate, to
draw correct bounding boxes for x,y nonzero.
* examples/renderdemo.c (do_output): If context has an all-zero matrix
set, interpret it as backend does not support transformation, so
warn on --rotate, and do not try to rotate.
* examples/viewer-pangox.c (pangox_view_get_context): Set an all-zero
matrix on context, to negotiate that we don't support transformations.
Diffstat (limited to 'examples/viewer-pangoxft.c')
-rw-r--r-- | examples/viewer-pangoxft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/viewer-pangoxft.c b/examples/viewer-pangoxft.c index 497c17af..8b308167 100644 --- a/examples/viewer-pangoxft.c +++ b/examples/viewer-pangoxft.c @@ -93,7 +93,7 @@ render_callback (PangoLayout *layout, pango_xft_render_layout (xft_context->draw, &xft_context->color, layout, - x, y); + x * PANGO_SCALE, y * PANGO_SCALE); } static void |