api-impl: add misc APIs needed for AntennaPod

This commit is contained in:
Julian Winkler
2025-02-10 18:19:55 +01:00
parent c7f1e05f5d
commit 1cf48085ff
30 changed files with 223 additions and 44 deletions

View File

@@ -207,6 +207,12 @@ public final class Bitmap {
}
}
public void setPixels(int[] pixels, int offset, int stride, int x, int y, int width, int height) {}
public void reconfigure(int width, int height, Bitmap.Config config) {}
public void setPremultiplied(boolean premultiplied) {}
@SuppressWarnings("deprecation")
@Override
protected void finalize() throws Throwable {

View File

@@ -0,0 +1,6 @@
package android.graphics;
public class LightingColorFilter extends ColorFilter {
public LightingColorFilter(int lightColor, int shadowColor) {}
}