MCPcopy Create free account
hub / github.com/HumbleUI/Skija / fillRect

Method fillRect

examples/scenes/src/SwingScene.java:614–619  ·  view source on GitHub ↗
(int x, int y, int width, int height)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 3

logMethod · 0.95
beforeDrawMethod · 0.95
drawRectMethod · 0.80

Tested by

no test coverage detected