Home
last modified time | relevance | path

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

/PHP-8.4/ext/gd/
H A Dgd.c2830 int npoints, col, nelem, i; in php_imagepolygon() local
2854 npoints = NPOINTS; in php_imagepolygon()
2858 if (npoints < 3) { in php_imagepolygon()
2863 if (nelem < npoints * 2) { in php_imagepolygon()
2864 zend_value_error("Trying to use %d points in array with only %d points", npoints, nelem/2); in php_imagepolygon()
2868 points = (gdPointPtr) safe_emalloc(npoints, sizeof(gdPoint), 0); in php_imagepolygon()
2870 for (i = 0; i < npoints; i++) { in php_imagepolygon()
2885 gdImageOpenPolygon(im, points, npoints, col); in php_imagepolygon()
2888 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()
2891 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()

Completed in 22 milliseconds