(int x, int y, int width, int height)
| 500 | /// |
| 501 | /// - `height`: the height of the rectangle to intersect the clip with |
| 502 | public void clipRect(int x, int y, int width, int height) { |
| 503 | impl.clipRect(nativeGraphics, xTranslate + x, yTranslate + y, width, height); |
| 504 | } |
| 505 | |
| 506 | /// Updates the clipping region to match the given region exactly |
| 507 | /// |
no outgoing calls