Home | History | Annotate | Download | only in tests
      1 /*
      2  * Copyright 2015 Google Inc.
      3  *
      4  * Use of this source code is governed by a BSD-style license that can be
      5  * found in the LICENSE file.
      6  */
      7 
      8 #include "SkBitmap.h"
      9 #include "SkImageInfo.h"
     10 #include "SkImage.h"
     11 #include "Test.h"
     12 
     13 DEF_TEST(ImageFrom565Bitmap, r) {
     14     SkBitmap bm;
     15     bm.allocPixels(SkImageInfo::Make(
     16         5, 7, kRGB_565_SkColorType, kOpaque_SkAlphaType));
     17     bm.eraseColor(SK_ColorBLACK);
     18     REPORTER_ASSERT(r, SkImage::MakeFromBitmap(bm) != nullptr);
     19 }
     20