You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
Path: stub out the rest of addRoundRect variants
This commit is contained in:
@@ -122,7 +122,19 @@ public class Path {
|
|||||||
native_add_rect(getBuilder(), rect.left, rect.top, rect.right, rect.bottom);
|
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) {}
|
public void addOval(RectF rect, Direction direction) {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user