don't reference (deprecated) kIgnore_SkAlphaType
Change-Id: I6c09845c48efc66a1057bc8db512b7567ade7e72
This commit is contained in:
@@ -150,7 +150,7 @@ static jobject nativeScreenshotBitmap(JNIEnv* env, jclass clazz,
|
||||
switch (screenshot->getFormat()) {
|
||||
case PIXEL_FORMAT_RGBX_8888: {
|
||||
screenshotInfo.fColorType = kRGBA_8888_SkColorType;
|
||||
screenshotInfo.fAlphaType = kIgnore_SkAlphaType;
|
||||
screenshotInfo.fAlphaType = kOpaque_SkAlphaType;
|
||||
break;
|
||||
}
|
||||
case PIXEL_FORMAT_RGBA_8888: {
|
||||
@@ -160,7 +160,7 @@ static jobject nativeScreenshotBitmap(JNIEnv* env, jclass clazz,
|
||||
}
|
||||
case PIXEL_FORMAT_RGB_565: {
|
||||
screenshotInfo.fColorType = kRGB_565_SkColorType;
|
||||
screenshotInfo.fAlphaType = kIgnore_SkAlphaType;
|
||||
screenshotInfo.fAlphaType = kOpaque_SkAlphaType;
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
|
||||
@@ -88,12 +88,15 @@ static inline SkImageInfo convertPixelFormat(const ANativeWindow_Buffer& buffer)
|
||||
case WINDOW_FORMAT_RGBX_8888:
|
||||
info.fColorType = kN32_SkColorType;
|
||||
info.fAlphaType = kOpaque_SkAlphaType;
|
||||
break;
|
||||
case WINDOW_FORMAT_RGB_565:
|
||||
info.fColorType = kRGB_565_SkColorType;
|
||||
info.fAlphaType = kOpaque_SkAlphaType;
|
||||
break;
|
||||
default:
|
||||
info.fColorType = kUnknown_SkColorType;
|
||||
info.fAlphaType = kIgnore_SkAlphaType;
|
||||
// switch to kUnknown_SkAlphaType when its in skia
|
||||
info.fAlphaType = kOpaque_SkAlphaType;
|
||||
break;
|
||||
}
|
||||
return info;
|
||||
|
||||
Reference in New Issue
Block a user