Draws Drawable drawable using clip and matrix. If Canvas has an asynchronous implementation, as is the case when it is recording into Picture, then drawable will be referenced, so that Drawable::draw() can be called when the operation is finalized. To force immediate drawing, call Drawabl
(@NotNull Drawable drawable)
| 952 | * @return this |
| 953 | */ |
| 954 | @NotNull @Contract("_ -> this") |
| 955 | public Canvas drawDrawable(@NotNull Drawable drawable) { |
| 956 | return drawDrawable(drawable, null); |
| 957 | } |
| 958 | |
| 959 | /** |
| 960 | * <p>Draws Drawable drawable using clip and matrix, offset by (x, y).</p> |
no test coverage detected