diff options
author | John Reck <jreck@google.com> | 2015-04-17 20:45:19 +0000 |
---|---|---|
committer | John Reck <jreck@google.com> | 2015-04-17 20:46:47 +0000 |
commit | 7809f835cae637c12eebdc92103ad88890228d97 (patch) | |
tree | 6e1d18e8b417f76e32a13b22ac9c3ced00b8c083 /graphics | |
parent | afbeb2c2374bf7b7f7efa120944714fab469173d (diff) | |
download | frameworks_base-7809f835cae637c12eebdc92103ad88890228d97.zip frameworks_base-7809f835cae637c12eebdc92103ad88890228d97.tar.gz frameworks_base-7809f835cae637c12eebdc92103ad88890228d97.tar.bz2 |
Revert "Move AssetAtlas off of SkBitmap*"
This reverts commit 87ffb63d90fb6dd2689fe72dcb24fda9a6156220.
Change-Id: I92adfcee454a0a19020cdd9e96a134be0ee529aa
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/java/android/graphics/Bitmap.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/graphics/java/android/graphics/Bitmap.java b/graphics/java/android/graphics/Bitmap.java index 76d6edf..e2f7799 100644 --- a/graphics/java/android/graphics/Bitmap.java +++ b/graphics/java/android/graphics/Bitmap.java @@ -1573,15 +1573,6 @@ public final class Bitmap implements Parcelable { return mSkBitmapPtr; } - /** - * Refs the underlying SkPixelRef and returns a pointer to it. - * - * @hide - * */ - public final long refSkPixelRef() { - return nativeRefPixelRef(mSkBitmapPtr); - } - private static class BitmapFinalizer { private long mNativeBitmap; @@ -1670,5 +1661,4 @@ public final class Bitmap implements Parcelable { private static native boolean nativeHasMipMap(long nativeBitmap); private static native void nativeSetHasMipMap(long nativeBitmap, boolean hasMipMap); private static native boolean nativeSameAs(long nativeBitmap0, long nativeBitmap1); - private static native long nativeRefPixelRef(long nativeBitmap); } |