Canvas: add more Bitmap drawing methods

This commit is contained in:
Julian Winkler
2025-02-10 18:06:49 +01:00
parent f69cff7113
commit 652715ee00
6 changed files with 50 additions and 6 deletions

View File

@@ -2,7 +2,11 @@ package android.graphics;
public class BitmapShader extends Shader {
public BitmapShader(Bitmap bitmap, TileMode tileX, TileMode tileY) {}
Bitmap bitmap;
public BitmapShader(Bitmap bitmap, TileMode tileX, TileMode tileY) {
this.bitmap = bitmap;
}
public void setLocalMatrix(Matrix matrix) {}
}