| 75 | } |
| 76 | |
| 77 | void PiuScreenBufferDraw(void* it, PiuView* view, PiuRectangle area) |
| 78 | { |
| 79 | PiuScreenBuffer* self = it; |
| 80 | PiuRectangleRecord bounds; |
| 81 | PiuRectangleSet(&bounds, 0, 0, (*self)->bounds.width, (*self)->bounds.height); |
| 82 | PiuViewDrawContent(view, PiuScreenBufferDrawAux, it, 0, 0, bounds.width, bounds.height); |
| 83 | } |
| 84 | |
| 85 | void PiuScreenBufferDrawAux(void* it, PiuView* view, PiuCoordinate x, PiuCoordinate y, PiuDimension sw, PiuDimension sh) |
| 86 | { |
nothing calls this directly
no test coverage detected