(float thickness, Color color, float x, float y, float w, float h, float cornerRadius)
| 449 | } |
| 450 | |
| 451 | public void drawfillBorder(float thickness, Color color, float x, float y, float w, float h, float cornerRadius) { |
| 452 | drawRoundRect(thickness, color, x, y, w, h, cornerRadius); |
| 453 | fillRoundRect(color, x, y, w, h, cornerRadius); |
| 454 | } |
| 455 | |
| 456 | public void drawRoundRect(float thickness, FSkinColor skinColor, float x, float y, float w, float h, float cornerRadius) { |
| 457 | drawRoundRect(thickness, skinColor.getColor(), x, y, w, h, cornerRadius); |
nothing calls this directly
no test coverage detected