Home
last modified time | relevance | path

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

/PHP-5.5/ext/gd/libgd/
H A Dgd.c145 im->polyInts = 0; in gdImageCreate()
201 im->polyInts = 0; in gdImageCreateTrueColor()
256 if (im->polyInts) { in gdImageDestroy()
257 gdFree(im->polyInts); in gdImageDestroy()
2643 im->polyInts = (int *) gdMalloc(sizeof(int) * n); in gdImageFilledPolygon()
2653 im->polyInts = (int *) gdRealloc(im->polyInts, sizeof(int) * im->polyAllocated); in gdImageFilledPolygon()
2706 im->polyInts[ints++] = (float) ((y - y1) * (x2 - x1)) / (float) (y2 - y1) + 0.5 + x1; in gdImageFilledPolygon()
2708 im->polyInts[ints++] = x2; in gdImageFilledPolygon()
2711 qsort(im->polyInts, ints, sizeof(int), gdCompareInt); in gdImageFilledPolygon()
2714 gdImageLine(im, im->polyInts[i], y, im->polyInts[i + 1], y, fill_color); in gdImageFilledPolygon()
H A Dgd.h193 int *polyInts; member

Completed in 14 milliseconds