| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 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 | |
| reed@google.com | b0b462b | 2012-03-08 22:13:39 +0000 | [diff] [blame] | 18 | #define W 256 |
| 19 | #define H 160 |
| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 20 | |
| 21 | class GiantBitmapGM : public skiagm::GM { |
| 22 | SkBitmap* fBM; |
| 23 | SkShader::TileMode fMode; |
| reed@google.com | b0b462b | 2012-03-08 22:13:39 +0000 | [diff] [blame] | 24 | bool fDoFilter; |
| 25 | bool fDoRotate; |
| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 26 | |
| 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.com | b0b462b | 2012-03-08 22:13:39 +0000 | [diff] [blame] | 42 | for (int y = -H*2; y < H; y += 80) { |
| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 43 | 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 | |
| 52 | public: |
| reed@google.com | b0b462b | 2012-03-08 22:13:39 +0000 | [diff] [blame] | 53 | GiantBitmapGM(SkShader::TileMode mode, bool doFilter, bool doRotate) : fBM(NULL) { |
| 54 | fMode = mode; |
| 55 | fDoFilter = doFilter; |
| 56 | fDoRotate = doRotate; |
| 57 | } |
| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 58 | |
| 59 | virtual ~GiantBitmapGM() { |
| 60 | SkDELETE(fBM); |
| 61 | } |
| 62 | |
| 63 | protected: |
| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 64 | 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.com | b0b462b | 2012-03-08 22:13:39 +0000 | [diff] [blame] | 79 | str.append(fDoFilter ? "_bilerp" : "_point"); |
| 80 | str.append(fDoRotate ? "_rotate" : "_scale"); |
| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 81 | 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.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 89 | |
| reed@google.com | b0b462b | 2012-03-08 22:13:39 +0000 | [diff] [blame] | 90 | 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.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 104 | canvas->drawPaint(paint); |
| 105 | } |
| 106 | |
| 107 | private: |
| 108 | typedef GM INHERITED; |
| 109 | }; |
| 110 | |
| 111 | /////////////////////////////////////////////////////////////////////////////// |
| 112 | |
| reed@google.com | b0b462b | 2012-03-08 22:13:39 +0000 | [diff] [blame] | 113 | static skiagm::GM* G000(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, false); } |
| 114 | static skiagm::GM* G100(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, false); } |
| 115 | static skiagm::GM* G200(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, false); } |
| 116 | static skiagm::GM* G010(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, false); } |
| 117 | static skiagm::GM* G110(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, false); } |
| 118 | static skiagm::GM* G210(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, false); } |
| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 119 | |
| reed@google.com | b0b462b | 2012-03-08 22:13:39 +0000 | [diff] [blame] | 120 | static skiagm::GM* G001(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, true); } |
| 121 | static skiagm::GM* G101(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, true); } |
| 122 | static skiagm::GM* G201(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, true); } |
| 123 | static skiagm::GM* G011(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, true); } |
| 124 | static skiagm::GM* G111(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, true); } |
| 125 | static skiagm::GM* G211(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, true); } |
| 126 | |
| 127 | static skiagm::GMRegistry reg000(G000); |
| 128 | static skiagm::GMRegistry reg100(G100); |
| 129 | static skiagm::GMRegistry reg200(G200); |
| 130 | static skiagm::GMRegistry reg010(G010); |
| 131 | static skiagm::GMRegistry reg110(G110); |
| 132 | static skiagm::GMRegistry reg210(G210); |
| 133 | |
| 134 | static skiagm::GMRegistry reg001(G001); |
| 135 | static skiagm::GMRegistry reg101(G101); |
| 136 | static skiagm::GMRegistry reg201(G201); |
| 137 | static skiagm::GMRegistry reg011(G011); |
| 138 | static skiagm::GMRegistry reg111(G111); |
| 139 | static skiagm::GMRegistry reg211(G211); |
| reed@google.com | 4bc0a9d | 2012-03-07 21:47:41 +0000 | [diff] [blame] | 140 | |