| 61 | }; |
| 62 | |
| 63 | void PiuInverterDraw(void* it, PiuView* view, PiuRectangle area) |
| 64 | { |
| 65 | PiuInverter* self = it; |
| 66 | PiuRectangleRecord bounds; |
| 67 | PiuRectangleSet(&bounds, 0, 0, (*self)->bounds.width, (*self)->bounds.height); |
| 68 | PiuViewDrawContent(view, PiuInverterDrawAux, it, 0, 0, bounds.width, bounds.height); |
| 69 | } |
| 70 | |
| 71 | extern GContext *getPocoPebbleGContext(Poco poco); |
| 72 |
nothing calls this directly
no test coverage detected