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 "include/core/SkAlphaType.h" 9 #include "include/core/SkBitmap.h" 10 #include "include/core/SkColor.h" 11 #include "include/core/SkColorType.h" 12 #include "include/core/SkImage.h" // IWYU pragma: keep 13 #include "include/core/SkImageInfo.h" 14 #include "include/core/SkRefCnt.h" 15 #include "tests/Test.h" 16 DEF_TEST(ImageFrom565Bitmap,r)17DEF_TEST(ImageFrom565Bitmap, r) { 18 SkBitmap bm; 19 bm.allocPixels(SkImageInfo::Make( 20 5, 7, kRGB_565_SkColorType, kOpaque_SkAlphaType)); 21 bm.eraseColor(SK_ColorBLACK); 22 REPORTER_ASSERT(r, bm.asImage() != nullptr); 23 } 24