This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via 7a68442b6e9b1172544f0e709ce50a2be6e376f7 (commit) from 7c4bb66768b4757c3944e0d99e6ba5fb3060fcee (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/7a68442b6e9b1172544f0e709ce50a2be6e37...
commit 7a68442b6e9b1172544f0e709ce50a2be6e376f7 Author: Cyril Hrubis metan@ucw.cz Date: Mon Feb 11 00:56:25 2013 +0100
text: Fix y_mul in text rendering.
diff --git a/libs/text/GP_Text.gen.c.t b/libs/text/GP_Text.gen.c.t index 12a8e7e..8df9c36 100644 --- a/libs/text/GP_Text.gen.c.t +++ b/libs/text/GP_Text.gen.c.t @@ -52,7 +52,7 @@ static void text_draw_1BPP_{{ pt.name }}(GP_Context *context, GP_TextStyle *styl for (k = 0; k < style->pixel_ymul; k++) GP_HLine(context, x_start, x_start + style->pixel_xmul - 1, - y - (glyph->bearing_y - style->font->ascend) * y_mul, fg); + y - (glyph->bearing_y - style->font->ascend) * y_mul + k, fg); }
y += style->pixel_ymul + style->pixel_yspace;
-----------------------------------------------------------------------
Summary of changes: libs/text/GP_Text.gen.c.t | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.