mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-04-28 12:17:57 +03:00
Path: stub out the rest of addRoundRect variants
This commit is contained in:
parent
279c95becb
commit
7354864e34
1 changed files with 13 additions and 1 deletions
|
@ -122,7 +122,19 @@ public class Path {
|
|||
native_add_rect(getBuilder(), rect.left, rect.top, rect.right, rect.bottom);
|
||||
}
|
||||
|
||||
public void addRoundRect(RectF rect, float[] radii, Direction direction) {}
|
||||
public void addRoundRect(RectF rect, float[] radii, Direction direction) {
|
||||
addRoundRect(rect.left, rect.top, rect.right, rect.bottom, radii, direction);
|
||||
}
|
||||
|
||||
public void addRoundRect(float left, float top, float right, float bottom,
|
||||
float[] radii, Direction direction) {}
|
||||
|
||||
public void addRoundRect(RectF rect, float rx, float ry, Direction direction) {
|
||||
addRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, direction);
|
||||
}
|
||||
|
||||
public void addRoundRect(float left, float top, float right, float bottom,
|
||||
float rx, float ry, Direction direction) {}
|
||||
|
||||
public void addOval(RectF rect, Direction direction) {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue