Fix bracket outside of ifdef
authorkrajcevski <krajcevski@google.com>
Mon, 2 Jun 2014 15:02:45 +0000 (08:02 -0700)
committerCommit bot <commit-bot@chromium.org>
Mon, 2 Jun 2014 15:02:45 +0000 (08:02 -0700)
R=jvanverth@google.com, robertphillips@google.com

Author: krajcevski@google.com

Review URL: https://codereview.chromium.org/305333003

src/gpu/SkGr.cpp

index 9579866..9dc215c 100644 (file)
@@ -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;