| 839 | } |
| 840 | |
| 841 | void PiuViewPushClip(PiuView* self, PiuCoordinate x, PiuCoordinate y, PiuDimension w, PiuDimension h) |
| 842 | { |
| 843 | cairo_t* cr = (*self)->cairo; |
| 844 | cairo_save(cr); |
| 845 | cairo_rectangle (cr, x, y, w, h); |
| 846 | cairo_clip(cr); |
| 847 | } |
| 848 | |
| 849 | void PiuViewPushColor(PiuView* self, PiuColor color) |
| 850 | { |
no outgoing calls
no test coverage detected