api-impl: stubs and fixes for Breezy Weather

This commit is contained in:
Julian Winkler
2025-10-01 09:57:01 +02:00
parent ffbd63cb75
commit a09aa53ecf
20 changed files with 105 additions and 7 deletions

View File

@@ -475,6 +475,10 @@ public class Canvas {
return save();
}
public int saveLayer(float left, float top, float right, float bottom, Paint paint) {
return save();
}
public void drawOval(RectF oval, Paint paint) {
Log.w("Canvas", "STUB: drawOval");
}
@@ -542,4 +546,8 @@ public class Canvas {
}
public void drawPaint(Paint paint) {}
public void drawPicture(Picture picture) {
Log.w("Canvas", "STUB: drawPicture");
}
}