| 61 | } |
| 62 | |
| 63 | int msDrawLineOgl(imageObj *img, shapeObj *p, strokeStyleObj *style) |
| 64 | { |
| 65 | OglRenderer* renderer = getOglRenderer(img); |
| 66 | renderer->renderPolyline(p, style->color, style->width, style->patternlength, style->pattern); |
| 67 | return MS_SUCCESS; |
| 68 | } |
| 69 | |
| 70 | int msDrawPolygonOgl(imageObj *img, shapeObj *p, colorObj *color) |
| 71 | { |
nothing calls this directly
no test coverage detected