(FImage image, Color borderColor, float x, float y, float w, float h)
| 771 | } |
| 772 | |
| 773 | public void drawImage(FImage image, Color borderColor, float x, float y, float w, float h) { |
| 774 | if (image == null) |
| 775 | return; |
| 776 | image.draw(this, x, y, w, h); |
| 777 | fillRoundRect(borderColor, x + 1, y + 1, w - 1.5f, h - 1.5f, (h - w) / 10);//used by zoom let some edges show... |
| 778 | } |
| 779 | |
| 780 | public void drawAvatarImage(FImage image, float x, float y, float w, float h, boolean drawGrayscale, float amount) { |
| 781 | if (image == null) |
no test coverage detected