Home
last modified time | relevance | path

Searched refs:npoints (Results 1 – 1 of 1) sorted by path

/PHP-5.4/ext/gd/
H A Dgd.c3468 int npoints, col, nelem, i; in php_imagepolygon() local
3476 npoints = NPOINTS; in php_imagepolygon()
3484 if (npoints <= 0) { in php_imagepolygon()
3488 if (nelem < npoints * 2) { in php_imagepolygon()
3489 …LL TSRMLS_CC, E_WARNING, "Trying to use %d points in array with only %d points", npoints, nelem/2); in php_imagepolygon()
3493 points = (gdPointPtr) safe_emalloc(npoints, sizeof(gdPoint), 0); in php_imagepolygon()
3495 for (i = 0; i < npoints; i++) { in php_imagepolygon()
3509 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()
3511 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()

Completed in 17 milliseconds