summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorMike Reed <reed@google.com>2014-07-08 12:36:44 -0400
committerMike Reed <reed@google.com>2014-07-08 15:05:38 -0400
commit1103b3255945d2eb2fa9c191e84e2270b343cca9 (patch)
tree3dd01f46c6a3479974410024250408950ad9859f /native
parenta3bf3e5c849bfb3bf0a74dcc06ef032355183c2e (diff)
downloadframeworks_base-1103b3255945d2eb2fa9c191e84e2270b343cca9.zip
frameworks_base-1103b3255945d2eb2fa9c191e84e2270b343cca9.tar.gz
frameworks_base-1103b3255945d2eb2fa9c191e84e2270b343cca9.tar.bz2
SkBitmap::Config is deprecated, use SkColorType
Change-Id: Ic953741325607bf85598c097bb3ab648d4a08996
Diffstat (limited to 'native')
-rw-r--r--native/graphics/jni/bitmap.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/native/graphics/jni/bitmap.cpp b/native/graphics/jni/bitmap.cpp
index eaa2cbe..df0751d 100644
--- a/native/graphics/jni/bitmap.cpp
+++ b/native/graphics/jni/bitmap.cpp
@@ -34,17 +34,17 @@ int AndroidBitmap_getInfo(JNIEnv* env, jobject jbitmap,
info->stride = bm->rowBytes();
info->flags = 0;
- switch (bm->config()) {
- case SkBitmap::kARGB_8888_Config:
+ switch (bm->colorType()) {
+ case kN32_SkColorType:
info->format = ANDROID_BITMAP_FORMAT_RGBA_8888;
break;
- case SkBitmap::kRGB_565_Config:
+ case kRGB_565_SkColorType:
info->format = ANDROID_BITMAP_FORMAT_RGB_565;
break;
- case SkBitmap::kARGB_4444_Config:
+ case kARGB_4444_SkColorType:
info->format = ANDROID_BITMAP_FORMAT_RGBA_4444;
break;
- case SkBitmap::kA8_Config:
+ case kAlpha_8_SkColorType:
info->format = ANDROID_BITMAP_FORMAT_A_8;
break;
default: