Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: gm/resizeimagefilter.cpp

Issue 381353005: Revert "Fix for saveLayer() with filters vs. the BBox Hierarchy." and (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/core/SkBBoxRecord.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "gm.h" 8 #include "gm.h"
9 #include "SkBitmapDevice.h" 9 #include "SkBitmapDevice.h"
10 #include "SkBitmapSource.h" 10 #include "SkBitmapSource.h"
11 #include "SkColor.h" 11 #include "SkColor.h"
12 #include "SkMatrixImageFilter.h" 12 #include "SkMatrixImageFilter.h"
13 #include "SkRefCnt.h" 13 #include "SkRefCnt.h"
14 14
15 namespace skiagm { 15 namespace skiagm {
16 16
17 class ResizeGM : public GM { 17 class ResizeGM : public GM {
18 public: 18 public:
19 ResizeGM() { 19 ResizeGM() {
20 this->setBGColor(0x00000000); 20 this->setBGColor(0x00000000);
21 } 21 }
22 22
23 protected: 23 protected:
24 virtual uint32_t onGetFlags() const SK_OVERRIDE { return kNoBBH_Flag; }
25
24 virtual SkString onShortName() { 26 virtual SkString onShortName() {
25 return SkString("resizeimagefilter"); 27 return SkString("resizeimagefilter");
26 } 28 }
27 29
28 void draw(SkCanvas* canvas, 30 void draw(SkCanvas* canvas,
29 const SkRect& rect, 31 const SkRect& rect,
30 const SkSize& deviceSize, 32 const SkSize& deviceSize,
31 SkPaint::FilterLevel filterLevel, 33 SkPaint::FilterLevel filterLevel,
32 SkImageFilter* input = NULL) { 34 SkImageFilter* input = NULL) {
33 SkRect dstRect; 35 SkRect dstRect;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 private: 116 private:
115 typedef GM INHERITED; 117 typedef GM INHERITED;
116 }; 118 };
117 119
118 ////////////////////////////////////////////////////////////////////////////// 120 //////////////////////////////////////////////////////////////////////////////
119 121
120 static GM* MyFactory(void*) { return new ResizeGM; } 122 static GM* MyFactory(void*) { return new ResizeGM; }
121 static GMRegistry reg(MyFactory); 123 static GMRegistry reg(MyFactory);
122 124
123 } 125 }
OLDNEW
« no previous file with comments | « no previous file | src/core/SkBBoxRecord.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698