| Index: src/gpu/SkGr.cpp
|
| diff --git a/src/gpu/SkGr.cpp b/src/gpu/SkGr.cpp
|
| index 9579866269d90a6a60c184fdbf6b6dc0c7419300..9dc215c735d5e243a5ec981a02ebb23954031eb5 100644
|
| --- a/src/gpu/SkGr.cpp
|
| +++ b/src/gpu/SkGr.cpp
|
| @@ -223,10 +223,11 @@ static GrTexture* sk_gr_create_bitmap_texture(GrContext* ctx,
|
| bitmap = &tmpBitmap;
|
| desc.fConfig = SkImageInfo2GrPixelConfig(bitmap->info());
|
| }
|
| + }
|
|
|
| // Is this an ETC1 encoded texture?
|
| #if SK_SUPPORT_ETC1
|
| - } else if (cache && ctx->getGpu()->caps()->isConfigTexturable(kETC1_GrPixelConfig)) {
|
| + else if (cache && ctx->getGpu()->caps()->isConfigTexturable(kETC1_GrPixelConfig)) {
|
| GrTexture *texture = load_etc1_texture(ctx, params, *bitmap, desc);
|
| if (NULL != texture) {
|
| return texture;
|
|
|