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 983969d8fad548991c47cf81e7e013308fcf6a70 (commit) from ab15bc2a2e7b7636d7e0481251615c360de17c3f (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/983969d8fad548991c47cf81e7e013308fcf6...
commit 983969d8fad548991c47cf81e7e013308fcf6a70 Author: Cyril Hrubis metan@ucw.cz Date: Sun May 22 11:03:33 2011 +0200
Fix FillTriangle pointer passing.
diff --git a/core/GP_Triangle.c b/core/GP_Triangle.c index 4734617..9a8d87b 100644 --- a/core/GP_Triangle.c +++ b/core/GP_Triangle.c @@ -53,7 +53,7 @@ void GP_FillTriangle(GP_Context * context, int x0, int y0, int x1, int y1, GP_CHECK_CONTEXT(context);
int coords[6] = { x0, y0, x1, y1, x2, y2 }; - GP_FillPolygon(context, 3, &coords, pixel); + GP_FillPolygon(context, 3, coords, pixel); }
void GP_TFillTriangle(GP_Context* context, int x0, int y0, int x1, int y1, @@ -66,5 +66,5 @@ void GP_TFillTriangle(GP_Context* context, int x0, int y0, int x1, int y1, GP_TRANSFORM_POINT(context, x2, y2); int coords[6] = { x0, y0, x1, y1, x2, y2 }; - GP_FillPolygon(context, 3, &coords, pixel); + GP_FillPolygon(context, 3, coords, pixel); }
-----------------------------------------------------------------------
Summary of changes: core/GP_Triangle.c | 4 ++-- 1 files changed, 2 insertions(+), 2 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.