| 187 | } |
| 188 | |
| 189 | void PiuSVGImageDraw(void* it, PiuView* view, PiuRectangle area) |
| 190 | { |
| 191 | PiuSVGImage* self = it; |
| 192 | PiuContentDraw(it, view, area); |
| 193 | if ((*self)->dci || (*self)->dcs) { |
| 194 | PiuRectangleRecord bounds; |
| 195 | PiuRectangleSet(&bounds, 0, 0, (*self)->bounds.width, (*self)->bounds.height); |
| 196 | if ((*self)->flags & piuClip) |
| 197 | PiuViewPushClip(view, 0, 0, bounds.width, bounds.height); |
| 198 | PiuViewDrawContent(view, PiuSVGImageDrawAux, it, 0, 0, bounds.width, bounds.height); |
| 199 | if ((*self)->flags & piuClip) |
| 200 | PiuViewPopClip(view); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | extern GContext *getPocoPebbleGContext(Poco poco); |
| 205 |
nothing calls this directly
no test coverage detected