| 2756 | */ |
| 2757 | |
| 2758 | void msDrawStartShape(mapObj *map, layerObj *layer, imageObj *image, |
| 2759 | shapeObj *shape) |
| 2760 | { |
| 2761 | if (image) |
| 2762 | { |
| 2763 | if(MS_RENDERER_PLUGIN(image->format)) |
| 2764 | { |
| 2765 | if (image->format->vtable->startShape) |
| 2766 | image->format->vtable->startShape(image, shape); |
| 2767 | } |
| 2768 | |
| 2769 | |
| 2770 | } |
| 2771 | } |
| 2772 | |
| 2773 | |
| 2774 | /** |
no test coverage detected