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, generate has been updated via 859d22427003b1d4be3f536075d48a847bcd2c8a (commit) via 4500e9d17c2657652e54e1ff4796d09bbef67952 (commit) from 040f8cdfb686e243d75d7c4e27c36b495d76656f (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/859d22427003b1d4be3f536075d48a847bcd2...
commit 859d22427003b1d4be3f536075d48a847bcd2c8a Merge: 040f8cd 4500e9d Author: Cyril Hrubis metan@ucw.cz Date: Tue Oct 25 12:24:02 2011 +0200
Merge ssh://192.168.1.1/home/metan/Devel/gfxprim into generate
http://repo.or.cz/w/gfxprim.git/commit/4500e9d17c2657652e54e1ff4796d09bbef67...
commit 4500e9d17c2657652e54e1ff4796d09bbef67952 Author: Cyril Hrubis metan@ucw.cz Date: Tue Oct 25 14:13:47 2011 +0200
Filters: INTER -> INTERP.
diff --git a/include/filters/GP_Resize.h b/include/filters/GP_Resize.h index 54acaed..05f80c7 100644 --- a/include/filters/GP_Resize.h +++ b/include/filters/GP_Resize.h @@ -47,8 +47,8 @@ #include "GP_Filter.h"
typedef enum GP_InterpolationType { - GP_INTER_NN, /* Nearest Neighbour */ - GP_INTER_CUBIC, /* Bicubic */ + GP_INTERP_NN, /* Nearest Neighbour */ + GP_INTERP_CUBIC, /* Bicubic */ } GP_InterpolationType;
void GP_FilterResize_Raw(GP_Context *src, GP_Context *res, diff --git a/libs/filters/GP_Resize.c b/libs/filters/GP_Resize.c index 6f944a6..192d5f5 100644 --- a/libs/filters/GP_Resize.c +++ b/libs/filters/GP_Resize.c @@ -214,10 +214,10 @@ void GP_FilterResize_Raw(GP_Context *src, GP_Context *res, GP_InterpolationType type) { switch (type) { - case GP_INTER_NN: + case GP_INTERP_NN: GP_FilterInterpolate_NN(src, res, callback); break; - case GP_INTER_CUBIC: + case GP_INTERP_CUBIC: GP_FilterInterpolate_Cubic(src, res, callback); break; }
-----------------------------------------------------------------------
Summary of changes: include/filters/GP_Resize.h | 4 ++-- libs/filters/GP_Resize.c | 4 ++-- 2 files changed, 4 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.