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/SkBitmap.h" 9#include "include/core/SkImage.h" 10#include "include/core/SkImageInfo.h" 11#include "tests/Test.h" 12 13DEF_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, bm.asImage() != nullptr); 19} 20