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 e33c83da1ded26f2e05184e4847c197d05ec146b (commit) from e77a976b35f4bec8d5d2f95de598e4944870bf8b (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/e33c83da1ded26f2e05184e4847c197d05ec1...
commit e33c83da1ded26f2e05184e4847c197d05ec146b Author: Cyril Hrubis metan@ucw.cz Date: Wed Dec 12 01:35:00 2012 +0100
libs: gfx: Hide private symbols.
diff --git a/libs/gfx/GP_FillCircle.gen.c.t b/libs/gfx/GP_FillCircle.gen.c.t index db72768..90c18c7 100644 --- a/libs/gfx/GP_FillCircle.gen.c.t +++ b/libs/gfx/GP_FillCircle.gen.c.t @@ -21,7 +21,7 @@
%% for ps in pixelsizes
-void GP_FillCircle_Raw_{{ ps.suffix }}(GP_Context *context, +static void GP_FillCircle_Raw_{{ ps.suffix }}(GP_Context *context, GP_Coord xcenter, GP_Coord ycenter, GP_Size r, GP_Pixel pixel) { /* for r == 0, circle degenerates to a point */ diff --git a/libs/gfx/algo/Arc.algo.h b/libs/gfx/algo/Arc.algo.h index fe94302..baff677 100644 --- a/libs/gfx/algo/Arc.algo.h +++ b/libs/gfx/algo/Arc.algo.h @@ -19,7 +19,7 @@ * Copyright (C) 2009-2010 Jiri "BlueBear" Dluhos * * jiri.bluebear.dluhos@gmail.com * * * - * Copyright (C) 2009-2010 Cyril Hrubis metan@ucw.cz * + * Copyright (C) 2009-2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
@@ -44,7 +44,7 @@ * FN_NAME - name of the function to be defined */ #define DEF_ARCSEGMENT_FN(FN_NAME, CONTEXT_T, PIXVAL_T, PUTPIXEL) -void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, +static void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, unsigned int a, unsigned int b, int direction, double start, double end, PIXVAL_T pixval) { diff --git a/libs/gfx/algo/Circle.algo.h b/libs/gfx/algo/Circle.algo.h index 76deb83..55c33ed 100644 --- a/libs/gfx/algo/Circle.algo.h +++ b/libs/gfx/algo/Circle.algo.h @@ -19,7 +19,7 @@ * Copyright (C) 2009-2011 Jiri "BlueBear" Dluhos * * jiri.bluebear.dluhos@gmail.com * * * - * Copyright (C) 2009-2011 Cyril Hrubis metan@ucw.cz * + * Copyright (C) 2009-2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
@@ -74,7 +74,7 @@ * FN_NAME - name of the function to be defined */ #define DEF_CIRCLE_FN(FN_NAME, CONTEXT_T, PIXVAL_T, PUTPIXEL) -void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, int r, +static void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, int r, PIXVAL_T pixval) { int x, y, error; diff --git a/libs/gfx/algo/CircleSeg.algo.h b/libs/gfx/algo/CircleSeg.algo.h index 0b3931b..de3de08 100644 --- a/libs/gfx/algo/CircleSeg.algo.h +++ b/libs/gfx/algo/CircleSeg.algo.h @@ -74,7 +74,7 @@ * FN_NAME - name of the function to be defined */ #define DEF_CIRCLE_SEG_FN(FN_NAME, CONTEXT_T, PIXVAL_T, PUTPIXEL) -void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, int r, +static void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, int r, uint8_t seg_flags, PIXVAL_T pixval) { int x, y, error; diff --git a/libs/gfx/algo/Ellipse.algo.h b/libs/gfx/algo/Ellipse.algo.h index 58c4c8a..f10fbb0 100644 --- a/libs/gfx/algo/Ellipse.algo.h +++ b/libs/gfx/algo/Ellipse.algo.h @@ -19,7 +19,7 @@ * Copyright (C) 2009-2010 Jiri "BlueBear" Dluhos * * jiri.bluebear.dluhos@gmail.com * * * - * Copyright (C) 2009-2010 Cyril Hrubis metan@ucw.cz * + * Copyright (C) 2009-2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
@@ -72,7 +72,7 @@ * FN_NAME - name of the function to be defined */ #define DEF_ELLIPSE_FN(FN_NAME, CONTEXT_T, PIXVAL_T, PUTPIXEL) -void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, +static void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, unsigned int a, unsigned int b, PIXVAL_T pixval) { /* Precompute quadratic terms. */ diff --git a/libs/gfx/algo/FillEllipse.algo.h b/libs/gfx/algo/FillEllipse.algo.h index aa92537..76da4bd 100644 --- a/libs/gfx/algo/FillEllipse.algo.h +++ b/libs/gfx/algo/FillEllipse.algo.h @@ -19,7 +19,7 @@ * Copyright (C) 2009-2010 Jiri "BlueBear" Dluhos * * jiri.bluebear.dluhos@gmail.com * * * - * Copyright (C) 2009-2010 Cyril Hrubis metan@ucw.cz * + * Copyright (C) 2009-2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
@@ -41,7 +41,7 @@ * FN_NAME - name of the function to be defined */ #define DEF_FILLELLIPSE_FN(FN_NAME, CONTEXT_T, PIXVAL_T, HLINE) -void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, +static void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, unsigned int a, unsigned int b, PIXVAL_T pixval) { /* Precompute quadratic terms. */ diff --git a/libs/gfx/algo/FillRing.algo.h b/libs/gfx/algo/FillRing.algo.h index 9b3a002..0238a63 100644 --- a/libs/gfx/algo/FillRing.algo.h +++ b/libs/gfx/algo/FillRing.algo.h @@ -19,7 +19,7 @@ * Copyright (C) 2009-2010 Jiri "BlueBear" Dluhos * * jiri.bluebear.dluhos@gmail.com * * * - * Copyright (C) 2009-2010 Cyril Hrubis metan@ucw.cz * + * Copyright (C) 2009-2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
@@ -36,7 +36,7 @@ * FN_NAME - name of the function to be defined */ #define DEF_FILLRING_FN(FN_NAME, CONTEXT_T, PIXVAL_T, HLINE) -void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, +static void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, unsigned int r1, unsigned int r2, PIXVAL_T pixval) { int outer_r = (int) GP_MAX(r1, r2); diff --git a/libs/gfx/algo/PartialEllipse.algo.h b/libs/gfx/algo/PartialEllipse.algo.h index 266be52..58aea30 100644 --- a/libs/gfx/algo/PartialEllipse.algo.h +++ b/libs/gfx/algo/PartialEllipse.algo.h @@ -19,7 +19,7 @@ * Copyright (C) 2009-2010 Jiri "BlueBear" Dluhos * * jiri.bluebear.dluhos@gmail.com * * * - * Copyright (C) 2009-2010 Cyril Hrubis metan@ucw.cz * + * Copyright (C) 2009-2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
@@ -36,7 +36,7 @@ * FN_NAME - name of the function to be defined */ #define DEF_PARTIAL_ELLIPSE_FN(FN_NAME, CONTEXT_T, PIXVAL_T, PUTPIXEL) -void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, int a, int b, +static void FN_NAME(CONTEXT_T context, int xcenter, int ycenter, int a, int b, int start, int end, PIXVAL_T pixval) { double startAngle = GP_NormalizeAngle(2*M_PI*(start / 360000.0)); -----------------------------------------------------------------------
Summary of changes: libs/gfx/GP_FillCircle.gen.c.t | 2 +- libs/gfx/algo/Arc.algo.h | 4 ++-- libs/gfx/algo/Circle.algo.h | 4 ++-- libs/gfx/algo/CircleSeg.algo.h | 2 +- libs/gfx/algo/Ellipse.algo.h | 4 ++-- libs/gfx/algo/FillEllipse.algo.h | 4 ++-- libs/gfx/algo/FillRing.algo.h | 4 ++-- libs/gfx/algo/PartialEllipse.algo.h | 4 ++-- 8 files changed, 14 insertions(+), 14 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.