Home
last modified time | relevance | path

Searched refs:polyInts (Results 1 – 2 of 2) sorted by relevance

/PHP-7.3/ext/gd/libgd/
H A Dgd.c190 im->polyInts = 0; in gdImageCreate()
243 im->polyInts = 0; in gdImageCreateTrueColor()
292 if (im->polyInts) { in gdImageDestroy()
293 gdFree(im->polyInts); in gdImageDestroy()
2707 im->polyInts = (int *) gdMalloc(sizeof(int) * n); in gdImageFilledPolygon()
2717 im->polyInts = (int *) gdRealloc(im->polyInts, sizeof(int) * im->polyAllocated); in gdImageFilledPolygon()
2783 im->polyInts[ints++] = (float) ((y - y1) * (x2 - x1)) / (float) (y2 - y1) + 0.5 + x1; in gdImageFilledPolygon()
2785 im->polyInts[ints++] = x2; in gdImageFilledPolygon()
2788 qsort(im->polyInts, ints, sizeof(int), gdCompareInt); in gdImageFilledPolygon()
2791 gdImageLine(im, im->polyInts[i], y, im->polyInts[i + 1], y, fill_color); in gdImageFilledPolygon()
H A Dgd.h204 int *polyInts; member

Completed in 14 milliseconds