summaryrefslogtreecommitdiff
path: root/ext/gd/libgd/gd.h
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2003-02-08 08:41:43 +0000
committerPierre Joye <pajoye@php.net>2003-02-08 08:41:43 +0000
commita5f35ef94a4dc5fd0687b4b09b92d18fd080ccc7 (patch)
treef38d4e00bca63376d29cbaadd51cadf237b5f2ee /ext/gd/libgd/gd.h
parente7b5c21ded7e65cb370c1fa7ae7d3863b79bdd49 (diff)
downloadphp-git-a5f35ef94a4dc5fd0687b4b09b92d18fd080ccc7.tar.gz
Add gdImageEllipse
Replace gdImageFilledEllipse by a new function (backported from the new phpgd) the new gdImageFilledEllipse fix bug bug #22103 (ellipse part)
Diffstat (limited to 'ext/gd/libgd/gd.h')
-rw-r--r--ext/gd/libgd/gd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/libgd/gd.h b/ext/gd/libgd/gd.h
index 709b98c10c..4cb381d230 100644
--- a/ext/gd/libgd/gd.h
+++ b/ext/gd/libgd/gd.h
@@ -420,7 +420,7 @@ void* gdImageGdPtr(gdImagePtr im, int *size);
/* Best to free this memory with gdFree(), not free() */
void* gdImageGd2Ptr(gdImagePtr im, int cs, int fmt, int *size);
-void gdImageEllipse(gdImagePtr im, int cx, int cy, int w, int h, int color);
+void gdImageEllipse(gdImagePtr im, int cx, int cy, int w, int h, int c);
/* Style is a bitwise OR ( | operator ) of these.
gdArc and gdChord are mutually exclusive;