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

Side by Side Diff: gm/bigtileimagefilter.cpp

Issue 1272713005: flag to use const& instead of const* for src-rect (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 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 "SkBitmapSource.h" 8 #include "SkBitmapSource.h"
9 #include "SkTileImageFilter.h" 9 #include "SkTileImageFilter.h"
10 #include "gm.h" 10 #include "gm.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 NULL)); 77 NULL));
78 p2.setImageFilter(tif2); 78 p2.setImageFilter(tif2);
79 79
80 canvas->translate(320, 320); 80 canvas->translate(320, 320);
81 canvas->saveLayer(&bound2, &p2); 81 canvas->saveLayer(&bound2, &p2);
82 canvas->setMatrix(SkMatrix::I()); 82 canvas->setMatrix(SkMatrix::I());
83 83
84 SkRect bound3 = SkRect::MakeXYWH(320, 320, 84 SkRect bound3 = SkRect::MakeXYWH(320, 320,
85 SkIntToScalar(kBitmapSize), 85 SkIntToScalar(kBitmapSize),
86 SkIntToScalar(kBitmapSize)); 86 SkIntToScalar(kBitmapSize));
87 canvas->drawBitmapRect(fGreenBitmap, &bound2, bound3, NULL, 87 canvas->drawBitmapRect(fGreenBitmap, bound2, bound3, nullptr,
88 SkCanvas::kStrict_SrcRectConstraint); 88 SkCanvas::kStrict_SrcRectConstraint);
89 canvas->restore(); 89 canvas->restore();
90 } 90 }
91 } 91 }
92 92
93 private: 93 private:
94 static const int kWidth = 512; 94 static const int kWidth = 512;
95 static const int kHeight = 512; 95 static const int kHeight = 512;
96 static const int kBitmapSize = 64; 96 static const int kBitmapSize = 64;
97 97
98 SkBitmap fRedBitmap; 98 SkBitmap fRedBitmap;
99 SkBitmap fGreenBitmap; 99 SkBitmap fGreenBitmap;
100 100
101 typedef GM INHERITED; 101 typedef GM INHERITED;
102 }; 102 };
103 103
104 ////////////////////////////////////////////////////////////////////////////// 104 //////////////////////////////////////////////////////////////////////////////
105 105
106 DEF_GM( return SkNEW(BigTileImageFilterGM); ) 106 DEF_GM( return SkNEW(BigTileImageFilterGM); )
107 107
108 } 108 }
OLDNEW
« no previous file with comments | « bench/BitmapRectBench.cpp ('k') | gm/bitmaprect.cpp » ('j') | gm/image.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698