epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +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 | */ |
commit-bot@chromium.org | ab13167 | 2013-09-13 12:39:55 +0000 | [diff] [blame] | 7 | |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 8 | #include "SampleCode.h" |
robertphillips@google.com | b706117 | 2013-09-06 14:16:12 +0000 | [diff] [blame] | 9 | #include "SkBlurMask.h" |
| 10 | #include "SkBlurMaskFilter.h" |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 11 | #include "SkCanvas.h" |
twiz@google.com | 76b8274 | 2011-06-02 20:30:02 +0000 | [diff] [blame] | 12 | #include "SkDevice.h" |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 13 | |
commit-bot@chromium.org | ab13167 | 2013-09-13 12:39:55 +0000 | [diff] [blame] | 14 | static SkBitmap make_bitmap() { |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 15 | SkBitmap bm; |
twiz@google.com | 76b8274 | 2011-06-02 20:30:02 +0000 | [diff] [blame] | 16 | bm.setConfig(SkBitmap::kARGB_8888_Config , 5, 5); |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 17 | bm.allocPixels(); |
| 18 | |
| 19 | for (int y = 0; y < bm.height(); y++) { |
| 20 | uint32_t* p = bm.getAddr32(0, y); |
| 21 | for (int x = 0; x < bm.width(); x++) { |
| 22 | p[x] = ((x + y) & 1) ? SK_ColorWHITE : SK_ColorBLACK; |
| 23 | } |
| 24 | } |
| 25 | bm.unlockPixels(); |
| 26 | return bm; |
| 27 | } |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 28 | |
| 29 | class TextureDomainView : public SampleView { |
| 30 | SkBitmap fBM; |
| 31 | |
| 32 | public: |
| 33 | TextureDomainView(){ |
| 34 | fBM = make_bitmap(); |
| 35 | } |
| 36 | |
| 37 | protected: |
| 38 | // overrides from SkEventSink |
| 39 | virtual bool onQuery(SkEvent* evt) { |
| 40 | if (SampleCode::TitleQ(*evt)) { |
junov@google.com | 1d32978 | 2011-07-28 20:10:09 +0000 | [diff] [blame] | 41 | SampleCode::TitleR(evt, "Texture Domain"); |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 42 | return true; |
| 43 | } |
| 44 | return this->INHERITED::onQuery(evt); |
| 45 | } |
| 46 | |
| 47 | virtual void onDrawContent(SkCanvas* canvas) { |
| 48 | SkIRect srcRect; |
| 49 | SkRect dstRect; |
| 50 | SkPaint paint; |
reed@google.com | 4469938 | 2013-10-31 17:28:30 +0000 | [diff] [blame] | 51 | paint.setFilterLevel(SkPaint::kLow_FilterLevel); |
twiz@google.com | 76b8274 | 2011-06-02 20:30:02 +0000 | [diff] [blame] | 52 | |
| 53 | // Test that bitmap draws from malloc-backed bitmaps respect |
| 54 | // the constrained texture domain. |
| 55 | srcRect.setXYWH(1, 1, 3, 3); |
| 56 | dstRect.setXYWH(5.0f, 5.0f, 305.0f, 305.0f); |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 57 | canvas->drawBitmapRect(fBM, &srcRect, dstRect, &paint); |
twiz@google.com | 76b8274 | 2011-06-02 20:30:02 +0000 | [diff] [blame] | 58 | |
| 59 | // Test that bitmap draws across separate devices also respect |
| 60 | // the constrainted texture domain. |
| 61 | // Note: GPU-backed bitmaps follow a different rendering path |
| 62 | // when copying from one GPU device to another. |
robertphillips@google.com | 1f2f338 | 2013-08-29 11:54:56 +0000 | [diff] [blame] | 63 | SkAutoTUnref<SkBaseDevice> secondDevice(canvas->createCompatibleDevice( |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 64 | SkBitmap::kARGB_8888_Config, 5, 5, true)); |
twiz@google.com | 76b8274 | 2011-06-02 20:30:02 +0000 | [diff] [blame] | 65 | SkCanvas secondCanvas(secondDevice.get()); |
| 66 | |
| 67 | srcRect.setXYWH(1, 1, 3, 3); |
| 68 | dstRect.setXYWH(1.0f, 1.0f, 3.0f, 3.0f); |
| 69 | secondCanvas.drawBitmapRect(fBM, &srcRect, dstRect, &paint); |
| 70 | |
| 71 | SkBitmap deviceBitmap = secondDevice->accessBitmap(false); |
| 72 | |
| 73 | srcRect.setXYWH(1, 1, 3, 3); |
| 74 | dstRect.setXYWH(405.0f, 5.0f, 305.0f, 305.0f); |
| 75 | canvas->drawBitmapRect(deviceBitmap, &srcRect, dstRect, &paint); |
junov@google.com | d935cfb | 2011-06-27 20:48:23 +0000 | [diff] [blame] | 76 | |
| 77 | // Test that bitmap blurring using a subrect |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 78 | // renders correctly |
junov@google.com | d935cfb | 2011-06-27 20:48:23 +0000 | [diff] [blame] | 79 | srcRect.setXYWH(1, 1, 3, 3); |
| 80 | dstRect.setXYWH(5.0f, 405.0f, 305.0f, 305.0f); |
| 81 | SkMaskFilter* mf = SkBlurMaskFilter::Create( |
junov@google.com | d935cfb | 2011-06-27 20:48:23 +0000 | [diff] [blame] | 82 | SkBlurMaskFilter::kNormal_BlurStyle, |
robertphillips@google.com | b706117 | 2013-09-06 14:16:12 +0000 | [diff] [blame] | 83 | SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(5)), |
junov@google.com | 1d32978 | 2011-07-28 20:10:09 +0000 | [diff] [blame] | 84 | SkBlurMaskFilter::kHighQuality_BlurFlag | |
| 85 | SkBlurMaskFilter::kIgnoreTransform_BlurFlag); |
junov@google.com | d935cfb | 2011-06-27 20:48:23 +0000 | [diff] [blame] | 86 | paint.setMaskFilter(mf)->unref(); |
| 87 | canvas->drawBitmapRect(deviceBitmap, &srcRect, dstRect, &paint); |
| 88 | |
epoger@google.com | 9ef2d83 | 2011-07-01 21:12:20 +0000 | [diff] [blame] | 89 | // Blur and a rotation + NULL src rect |
junov@google.com | d935cfb | 2011-06-27 20:48:23 +0000 | [diff] [blame] | 90 | // This should not trigger the texture domain code |
| 91 | // but it will test a code path in SkGpuDevice::drawBitmap |
| 92 | // that handles blurs with rects transformed to non- |
| 93 | // orthogonal rects. It also tests the NULL src rect handling |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 94 | mf = SkBlurMaskFilter::Create( |
junov@google.com | 1d32978 | 2011-07-28 20:10:09 +0000 | [diff] [blame] | 95 | SkBlurMaskFilter::kNormal_BlurStyle, |
robertphillips@google.com | b706117 | 2013-09-06 14:16:12 +0000 | [diff] [blame] | 96 | SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(5)), |
junov@google.com | 1d32978 | 2011-07-28 20:10:09 +0000 | [diff] [blame] | 97 | SkBlurMaskFilter::kHighQuality_BlurFlag); |
| 98 | paint.setMaskFilter(mf)->unref(); |
| 99 | |
junov@google.com | d935cfb | 2011-06-27 20:48:23 +0000 | [diff] [blame] | 100 | dstRect.setXYWH(-150.0f, -150.0f, 300.0f, 300.0f); |
| 101 | canvas->translate(550, 550); |
| 102 | canvas->rotate(45); |
| 103 | canvas->drawBitmapRect(fBM, NULL, dstRect, &paint); |
junov@google.com | 869d6d9 | 2011-05-17 15:47:10 +0000 | [diff] [blame] | 104 | } |
| 105 | private: |
| 106 | typedef SkView INHERITED; |
| 107 | }; |
| 108 | |
| 109 | ////////////////////////////////////////////////////////////////////////////// |
| 110 | |
| 111 | static SkView* MyFactory() { return new TextureDomainView; } |
| 112 | static SkViewRegister reg(MyFactory); |