(int x, int y, int width, int height)
| 612 | } |
| 613 | |
| 614 | @Override |
| 615 | public void fillRect(int x, int y, int width, int height) { |
| 616 | log("[+] fillRect %d, %d, %d, %d", x, y, width, height); |
| 617 | beforeDraw(); |
| 618 | canvas.drawRect(Rect.makeXYWH(x, y, width, height), paint); |
| 619 | } |
| 620 | |
| 621 | @Override |
| 622 | public void clearRect(int x, int y, int width, int height) { |
nothing calls this directly
no test coverage detected