| 371 | } |
| 372 | |
| 373 | int renderPolygonGD(imageObj *img, shapeObj *p, colorObj *color) |
| 374 | { |
| 375 | gdImagePtr ip; |
| 376 | |
| 377 | if(!img || !p || !color) return MS_FAILURE; |
| 378 | if(!(ip = MS_IMAGE_GET_GDIMAGEPTR(img))) return MS_FAILURE; |
| 379 | SETPEN(ip, color); |
| 380 | imageFilledPolygon(ip, p, color->pen); |
| 381 | return MS_SUCCESS; |
| 382 | } |
| 383 | |
| 384 | int renderGlyphsLineGD(imageObj *img, labelPathObj *labelpath, labelStyleObj *style, char *text) { |
| 385 | return MS_SUCCESS; |
nothing calls this directly
no test coverage detected