api-impl: add misc APIs for Open Sudoku

This commit is contained in:
Julian Winkler
2025-02-18 18:59:24 +01:00
parent 227f3c9682
commit 3fb1f56da2
8 changed files with 29 additions and 1 deletions

View File

@@ -186,6 +186,11 @@ public class Path {
return false;
}
public void set(Path src) {
reset();
addPath(src);
}
@SuppressWarnings("deprecation")
@Override
protected void finalize() throws Throwable {

View File

@@ -14,6 +14,7 @@ import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.Shader;
import android.util.AttributeSet;
public class BitmapDrawable extends Drawable {
@@ -56,4 +57,6 @@ public class BitmapDrawable extends Drawable {
public int getIntrinsicHeight() {
return bitmap.getHeight();
}
public void setTileModeX(Shader.TileMode mode) {}
}