blob: c8b008b4dd8316c8f68da4f388bfce0251e5b433 [file] [log] [blame]
reed@google.com4bc0a9d2012-03-07 21:47:41 +00001/*
2 * Copyright 2011 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.h"
9#include "SkCanvas.h"
10#include "SkColorPriv.h"
11#include "SkShader.h"
12
13/*
14 * Want to ensure that our bitmap sampler (in bitmap shader) keeps plenty of
15 * precision when scaling very large images (where the dx might get very small.
16 */
17
reed@google.comb0b462b2012-03-08 22:13:39 +000018#define W 256
19#define H 160
reed@google.com4bc0a9d2012-03-07 21:47:41 +000020
21class GiantBitmapGM : public skiagm::GM {
22 SkBitmap* fBM;
23 SkShader::TileMode fMode;
reed@google.comb0b462b2012-03-08 22:13:39 +000024 bool fDoFilter;
25 bool fDoRotate;
reed@google.com4bc0a9d2012-03-07 21:47:41 +000026
27 const SkBitmap& getBitmap() {
28 if (NULL == fBM) {
29 fBM = new SkBitmap;
30 fBM->setConfig(SkBitmap::kARGB_8888_Config, W, H);
31 fBM->allocPixels();
32 fBM->eraseColor(SK_ColorWHITE);
33
34 const SkColor colors[] = {
35 SK_ColorBLUE, SK_ColorRED, SK_ColorBLACK, SK_ColorGREEN
36 };
37
38 SkCanvas canvas(*fBM);
39 SkPaint paint;
40 paint.setAntiAlias(true);
41 paint.setStrokeWidth(SkIntToScalar(30));
reed@google.comb0b462b2012-03-08 22:13:39 +000042 for (int y = -H*2; y < H; y += 80) {
reed@google.com4bc0a9d2012-03-07 21:47:41 +000043 SkScalar yy = SkIntToScalar(y);
44 paint.setColor(colors[y/80 & 0x3]);
45 canvas.drawLine(0, yy, SkIntToScalar(W), yy + SkIntToScalar(W),
46 paint);
47 }
48 }
49 return *fBM;
50 }
51
52public:
reed@google.comb0b462b2012-03-08 22:13:39 +000053 GiantBitmapGM(SkShader::TileMode mode, bool doFilter, bool doRotate) : fBM(NULL) {
54 fMode = mode;
55 fDoFilter = doFilter;
56 fDoRotate = doRotate;
57 }
reed@google.com4bc0a9d2012-03-07 21:47:41 +000058
59 virtual ~GiantBitmapGM() {
60 SkDELETE(fBM);
61 }
62
63protected:
reed@google.com4bc0a9d2012-03-07 21:47:41 +000064 virtual SkString onShortName() {
65 SkString str("giantbitmap_");
66 switch (fMode) {
67 case SkShader::kClamp_TileMode:
68 str.append("clamp");
69 break;
70 case SkShader::kRepeat_TileMode:
71 str.append("repeat");
72 break;
73 case SkShader::kMirror_TileMode:
74 str.append("mirror");
75 break;
76 default:
77 break;
78 }
reed@google.comb0b462b2012-03-08 22:13:39 +000079 str.append(fDoFilter ? "_bilerp" : "_point");
80 str.append(fDoRotate ? "_rotate" : "_scale");
reed@google.com4bc0a9d2012-03-07 21:47:41 +000081 return str;
82 }
83
84 virtual SkISize onISize() { return SkISize::Make(640, 480); }
85
86 virtual void onDraw(SkCanvas* canvas) {
87 SkPaint paint;
88 SkShader* s = SkShader::CreateBitmapShader(getBitmap(), fMode, fMode);
reed@google.com4bc0a9d2012-03-07 21:47:41 +000089
reed@google.comb0b462b2012-03-08 22:13:39 +000090 SkMatrix m;
91 if (fDoRotate) {
92// m.setRotate(SkIntToScalar(30), 0, 0);
93 m.setSkew(SK_Scalar1, 0, 0, 0);
94 m.postScale(2*SK_Scalar1/3, 2*SK_Scalar1/3);
95 } else {
96 m.setScale(2*SK_Scalar1/3, 2*SK_Scalar1/3);
97 }
98 s->setLocalMatrix(m);
99
100 paint.setShader(s)->unref();
101 paint.setFilterBitmap(fDoFilter);
102
103 canvas->translate(SkIntToScalar(50), SkIntToScalar(50));
reed@google.com4bc0a9d2012-03-07 21:47:41 +0000104 canvas->drawPaint(paint);
105 }
106
107private:
108 typedef GM INHERITED;
109};
110
111///////////////////////////////////////////////////////////////////////////////
112
reed@google.comb0b462b2012-03-08 22:13:39 +0000113static skiagm::GM* G000(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, false); }
114static skiagm::GM* G100(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, false); }
115static skiagm::GM* G200(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, false); }
116static skiagm::GM* G010(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, false); }
117static skiagm::GM* G110(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, false); }
118static skiagm::GM* G210(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, false); }
reed@google.com4bc0a9d2012-03-07 21:47:41 +0000119
reed@google.comb0b462b2012-03-08 22:13:39 +0000120static skiagm::GM* G001(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, true); }
121static skiagm::GM* G101(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, true); }
122static skiagm::GM* G201(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, true); }
123static skiagm::GM* G011(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, true); }
124static skiagm::GM* G111(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, true); }
125static skiagm::GM* G211(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, true); }
126
127static skiagm::GMRegistry reg000(G000);
128static skiagm::GMRegistry reg100(G100);
129static skiagm::GMRegistry reg200(G200);
130static skiagm::GMRegistry reg010(G010);
131static skiagm::GMRegistry reg110(G110);
132static skiagm::GMRegistry reg210(G210);
133
134static skiagm::GMRegistry reg001(G001);
135static skiagm::GMRegistry reg101(G101);
136static skiagm::GMRegistry reg201(G201);
137static skiagm::GMRegistry reg011(G011);
138static skiagm::GMRegistry reg111(G111);
139static skiagm::GMRegistry reg211(G211);
reed@google.com4bc0a9d2012-03-07 21:47:41 +0000140