Draws into the specified content. The drawing sequence will be balanced upon return (i.e. the saveLevel() on the canvas will match what it was when draw() was called, and the current matrix and clip settings will not be changed.
(Canvas canvas)
| 31 | * and the current matrix and clip settings will not be changed. |
| 32 | */ |
| 33 | @ApiStatus.NonExtendable |
| 34 | public Drawable draw(Canvas canvas) { |
| 35 | return draw(canvas, null); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Draws into the specified content. The drawing sequence will be balanced upon return |
nothing calls this directly
no test coverage detected