(@NotNull Image image, @NotNull Rect dst)
| 351 | } |
| 352 | |
| 353 | @NotNull @Contract("_, _ -> this") |
| 354 | public Canvas drawImageRect(@NotNull Image image, @NotNull Rect dst) { |
| 355 | return drawImageRect(image, Rect.makeWH(image.getWidth(), image.getHeight()), dst, SamplingMode.DEFAULT, null, true); |
| 356 | } |
| 357 | |
| 358 | @NotNull @Contract("_, _, _ -> this") |
| 359 | public Canvas drawImageRect(@NotNull Image image, @NotNull Rect dst, @Nullable Paint paint) { |
no test coverage detected