• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2017 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 "gm/gm.h"
9 #include "include/core/SkBitmap.h"
10 #include "include/core/SkBlurTypes.h"
11 #include "include/core/SkCanvas.h"
12 #include "include/core/SkColor.h"
13 #include "include/core/SkColorFilter.h"
14 #include "include/core/SkImage.h"
15 #include "include/core/SkImageInfo.h"
16 #include "include/core/SkMaskFilter.h"
17 #include "include/core/SkPaint.h"
18 #include "include/core/SkRefCnt.h"
19 #include "include/core/SkShader.h"
20 
make_alpha_image(int w,int h)21 static SkBitmap make_alpha_image(int w, int h) {
22     SkBitmap bm;
23     bm.allocPixels(SkImageInfo::MakeA8(w, h));
24     bm.eraseARGB(10, 0, 0 , 0);
25     for (int y = 0; y < bm.height(); ++y) {
26         for (int x = y; x < bm.width(); ++x) {
27             *bm.getAddr8(x, y) = 0xFF;
28         }
29     }
30     bm.setImmutable();
31     return bm;
32 }
33 
make_color_filter()34 static sk_sp<SkColorFilter> make_color_filter() {
35     float colorMatrix[20] = {
36         1, 0, 0,   0,   0,
37         0, 1, 0,   0,   0,
38         0, 0, 0.5, 0.5, 0,
39         0, 0, 0.5, 0.5, 0}; // mix G and A.
40     return SkColorFilters::Matrix(colorMatrix);
41 }
42 
43 DEF_SIMPLE_GM(alpha_image, canvas, 256, 256) {
44     auto image = SkImage::MakeFromBitmap(make_alpha_image(96, 96));
45     SkPaint paint;
46 
47     paint.setColorFilter(make_color_filter());
48     paint.setMaskFilter(SkMaskFilter::MakeBlur(kNormal_SkBlurStyle, 10.0f));
49     canvas->drawImage(image.get(), 16, 16, &paint);
50 
51     paint.setColorFilter(nullptr);
52     paint.setShader(SkShaders::Color(SK_ColorCYAN));
53     canvas->drawImage(image.get(), 144, 16, &paint);
54 
55     paint.setColorFilter(make_color_filter());
56     canvas->drawImage(image.get(), 16, 144, &paint);
57 
58     paint.setMaskFilter(nullptr);
59     canvas->drawImage(image.get(), 144, 144, &paint);
60 }
61