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 6c21c9015f98423f9f880ae220a6956defed011c (commit) from cdf4a7d83af42ed412a8b705b3ad50cb43a9ecb9 (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/6c21c9015f98423f9f880ae220a6956defed0...
commit 6c21c9015f98423f9f880ae220a6956defed011c Author: Cyril Hrubis metan@ucw.cz Date: Sun Jun 17 21:10:11 2012 +0200
filters: resize NN: Remove forgotten debug print.
diff --git a/libs/filters/GP_ResizeNN.gen.c.t b/libs/filters/GP_ResizeNN.gen.c.t index 7c7bd51..cf364a0 100644 --- a/libs/filters/GP_ResizeNN.gen.c.t +++ b/libs/filters/GP_ResizeNN.gen.c.t @@ -27,11 +27,8 @@ static int GP_FilterResizeNN_{{ pt.name }}_Raw(const GP_Context *src, 1.00 * dst->w / src->w, 1.00 * dst->h / src->h);
/* Pre-compute mapping for interpolation */ - for (i = 0; i < dst->w; i++) { + for (i = 0; i < dst->w; i++) xmap[i] = ((((i * (src->w - 1))<<8) + (dst->w - 1)/2) / (dst->w - 1) + (1<<7))>>8; - printf("%i-%i ", i, xmap[i]); - } - printf("n%i -> %in", src->w, dst->w);
for (i = 0; i < dst->h; i++) ymap[i] = ((((i * (src->h - 1))<<8) + (dst->h - 1)/2) / (dst->h - 1) + (1<<7))>>8;
-----------------------------------------------------------------------
Summary of changes: libs/filters/GP_ResizeNN.gen.c.t | 5 +---- 1 files changed, 1 insertions(+), 4 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.