Remove use of refSkPixelRef

Test: refactoring, existing tests pass
Change-Id: I4ea51f25b3a2e4cb6a3391d059fb1f0b74f0e90d
This commit is contained in:
Diego Perez
2016-10-26 15:52:48 +01:00
parent daf7229047
commit 906f2ad1c8

View File

@@ -92,8 +92,7 @@ public final class Bitmap_Delegate {
@Nullable
public static Bitmap_Delegate getDelegate(@Nullable Bitmap bitmap) {
// refSkPixelRef is a hack to get the native pointer: see #nativeRefPixelRef()
return bitmap == null ? null : getDelegate(bitmap.refSkPixelRef());
return bitmap == null ? null : getDelegate(bitmap.getNativeInstance());
}
/**