| 94 | } |
| 95 | |
| 96 | void PiuPortDraw(void* it, PiuView* view, PiuRectangle area) |
| 97 | { |
| 98 | PiuPort* self = it; |
| 99 | PiuContentDraw(it, view, area); |
| 100 | (*self)->view = view; |
| 101 | PiuBehaviorOnDraw(it, area); |
| 102 | (*self)->view = NULL; |
| 103 | } |
| 104 | |
| 105 | void PiuPortMark(xsMachine* the, void* it, xsMarkRoot markRoot) |
| 106 | { |
nothing calls this directly
no test coverage detected