giantbitmap.cpp revision 9c9005a347e9996f357bd79591bd34f74f8bbc66
1/*
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
18#define W   257
19#define H   161
20
21class GiantBitmapGM : public skiagm::GM {
22    SkBitmap* fBM;
23    SkShader::TileMode fMode;
24    bool fDoFilter;
25    bool fDoRotate;
26
27    const SkBitmap& getBitmap() {
28        if (NULL == fBM) {
29            fBM = new SkBitmap;
30            fBM->allocN32Pixels(W, H);
31            fBM->eraseColor(SK_ColorWHITE);
32
33            const SkColor colors[] = {
34                SK_ColorBLUE, SK_ColorRED, SK_ColorBLACK, SK_ColorGREEN
35            };
36
37            SkCanvas canvas(*fBM);
38            SkPaint paint;
39            paint.setAntiAlias(true);
40            paint.setStrokeWidth(SkIntToScalar(20));
41
42#if 0
43            for (int y = -H*2; y < H; y += 50) {
44                SkScalar yy = SkIntToScalar(y);
45                paint.setColor(colors[y/50 & 0x3]);
46                canvas.drawLine(0, yy, SkIntToScalar(W), yy + SkIntToScalar(W),
47                                paint);
48            }
49#else
50            for (int x = -W; x < W; x += 60) {
51                paint.setColor(colors[x/60 & 0x3]);
52
53                SkScalar xx = SkIntToScalar(x);
54                canvas.drawLine(xx, 0, xx, SkIntToScalar(H),
55                                paint);
56            }
57#endif
58        }
59        return *fBM;
60    }
61
62public:
63    GiantBitmapGM(SkShader::TileMode mode, bool doFilter, bool doRotate) : fBM(NULL) {
64        fMode = mode;
65        fDoFilter = doFilter;
66        fDoRotate = doRotate;
67    }
68
69    virtual ~GiantBitmapGM() {
70        SkDELETE(fBM);
71    }
72
73protected:
74    virtual SkString onShortName() {
75        SkString str("giantbitmap_");
76        switch (fMode) {
77            case SkShader::kClamp_TileMode:
78                str.append("clamp");
79                break;
80            case SkShader::kRepeat_TileMode:
81                str.append("repeat");
82                break;
83            case SkShader::kMirror_TileMode:
84                str.append("mirror");
85                break;
86            default:
87                break;
88        }
89        str.append(fDoFilter ? "_bilerp" : "_point");
90        str.append(fDoRotate ? "_rotate" : "_scale");
91        return str;
92    }
93
94    virtual SkISize onISize() { return SkISize::Make(640, 480); }
95
96    virtual void onDraw(SkCanvas* canvas) {
97        SkPaint paint;
98
99        SkMatrix m;
100        if (fDoRotate) {
101//            m.setRotate(SkIntToScalar(30), 0, 0);
102            m.setSkew(SK_Scalar1, 0, 0, 0);
103//            m.postScale(2*SK_Scalar1/3, 2*SK_Scalar1/3);
104        } else {
105            SkScalar scale = 11*SK_Scalar1/12;
106            m.setScale(scale, scale);
107        }
108        SkShader* s = SkShader::CreateBitmapShader(getBitmap(), fMode, fMode, &m);
109
110        paint.setShader(s)->unref();
111        paint.setFilterLevel(fDoFilter ? SkPaint::kLow_FilterLevel : SkPaint::kNone_FilterLevel);
112
113        canvas->translate(SkIntToScalar(50), SkIntToScalar(50));
114
115//        SkRect r = SkRect::MakeXYWH(-50, -50, 32, 16);
116//        canvas->drawRect(r, paint); return;
117        canvas->drawPaint(paint);
118    }
119
120private:
121    typedef GM INHERITED;
122};
123
124///////////////////////////////////////////////////////////////////////////////
125
126static skiagm::GM* G000(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, false); }
127static skiagm::GM* G100(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, false); }
128static skiagm::GM* G200(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, false); }
129static skiagm::GM* G010(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, false); }
130static skiagm::GM* G110(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, false); }
131static skiagm::GM* G210(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, false); }
132
133static skiagm::GM* G001(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, true); }
134static skiagm::GM* G101(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, true); }
135static skiagm::GM* G201(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, true); }
136static skiagm::GM* G011(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, true); }
137static skiagm::GM* G111(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, true); }
138static skiagm::GM* G211(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, true); }
139
140static skiagm::GMRegistry reg000(G000);
141static skiagm::GMRegistry reg100(G100);
142static skiagm::GMRegistry reg200(G200);
143static skiagm::GMRegistry reg010(G010);
144static skiagm::GMRegistry reg110(G110);
145static skiagm::GMRegistry reg210(G210);
146
147static skiagm::GMRegistry reg001(G001);
148static skiagm::GMRegistry reg101(G101);
149static skiagm::GMRegistry reg201(G201);
150static skiagm::GMRegistry reg011(G011);
151static skiagm::GMRegistry reg111(G111);
152static skiagm::GMRegistry reg211(G211);
153