2 * Copyright 2013 Google Inc.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
11 #include "SkColorPriv.h"
14 * This GM checks that bitmap pixels are unpremultiplied before being exported
15 * to other formats. If unpremultiplication is implemented properly, this
16 * GM should come out completely white. If not, this GM looks like a row of two
17 * greyscale gradients above a row of grey lines.
18 * This tests both the ARGB4444 and ARGB8888 bitmap configurations.
21 static const int SLIDE_SIZE = 256;
22 static const int PIXEL_SIZE_8888 = SLIDE_SIZE / 256;
23 static const int PIXEL_SIZE_4444 = SLIDE_SIZE / 16;
25 static void init_bitmap(SkColorType ct, SkBitmap* bitmap) {
26 bitmap->allocPixels(SkImageInfo::Make(SLIDE_SIZE, SLIDE_SIZE, ct,
27 kPremul_SkAlphaType));
28 bitmap->eraseColor(SK_ColorWHITE);
31 static SkBitmap make_argb8888_gradient() {
33 init_bitmap(kN32_SkColorType, &bitmap);
35 for (int y = 0; y < SLIDE_SIZE; y++) {
36 uint32_t* dst = bitmap.getAddr32(0, y);
37 for (int x = 0; x < SLIDE_SIZE; x++) {
38 dst[x] = SkPackARGB32(rowColor, rowColor,
41 if (y % PIXEL_SIZE_8888 == PIXEL_SIZE_8888 - 1) {
48 static SkBitmap make_argb4444_gradient() {
50 init_bitmap(kARGB_4444_SkColorType, &bitmap);
52 for (int y = 0; y < SLIDE_SIZE; y++) {
53 uint16_t* dst = bitmap.getAddr16(0, y);
54 for (int x = 0; x < SLIDE_SIZE; x++) {
55 dst[x] = SkPackARGB4444(rowColor, rowColor,
58 if (y % PIXEL_SIZE_4444 == PIXEL_SIZE_4444 - 1) {
65 static SkBitmap make_argb8888_stripes() {
67 init_bitmap(kN32_SkColorType, &bitmap);
69 for (int y = 0; y < SLIDE_SIZE; y++) {
70 uint32_t* dst = bitmap.getAddr32(0, y);
71 for (int x = 0; x < SLIDE_SIZE; x++) {
72 dst[x] = SkPackARGB32(rowColor, rowColor,
84 static SkBitmap make_argb4444_stripes() {
86 init_bitmap(kARGB_4444_SkColorType, &bitmap);
87 uint8_t rowColor = 0;;
88 for (int y = 0; y < SLIDE_SIZE; y++) {
89 uint16_t* dst = bitmap.getAddr16(0, y);
90 for (int x = 0; x < SLIDE_SIZE; x++) {
91 dst[x] = SkPackARGB4444(rowColor, rowColor,
105 class BitmapPremulGM : public GM {
108 this->setBGColor(SK_ColorWHITE);
112 SkString onShortName() SK_OVERRIDE {
113 return SkString("bitmap_premul");
116 SkISize onISize() SK_OVERRIDE {
117 return SkISize::Make(SLIDE_SIZE * 2, SLIDE_SIZE * 2);
120 void onDraw(SkCanvas* canvas) SK_OVERRIDE {
121 SkScalar slideSize = SkIntToScalar(SLIDE_SIZE);
122 canvas->drawBitmap(make_argb8888_gradient(), 0, 0);
123 canvas->drawBitmap(make_argb4444_gradient(), slideSize, 0);
124 canvas->drawBitmap(make_argb8888_stripes(), 0, slideSize);
125 canvas->drawBitmap(make_argb4444_stripes(), slideSize, slideSize);
129 typedef GM INHERITED;
132 DEF_GM( return new BitmapPremulGM; )