add Bitmap.isMutable()

In our implementation all bitmaps are mutable
This commit is contained in:
Julian Winkler
2025-01-26 22:27:43 +01:00
parent 68e32eab45
commit 111a90e554

View File

@@ -184,6 +184,10 @@ public final class Bitmap {
return getAllocationByteCount();
}
public boolean isMutable() {
return true;
}
@SuppressWarnings("deprecation")
@Override
protected void finalize() throws Throwable {