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

Side by Side Diff: gm/resizeimagefilter.cpp

Issue 537713002: Revert to enabling all of -O2 as it exposes a bug in the toolchain. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: shorter Created 6 years, 3 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 | « gm/bitmaprect.cpp ('k') | gm/tilemodes_scaled.cpp » ('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 SkString onShortName() { 24 virtual SkString onShortName() {
25 return SkString("resizeimagefilter"); 25 return SkString("resizeimagefilter");
26 } 26 }
27 27
28 #ifdef SK_CPU_ARM64
29 // Skip tiled drawing on 64-bit ARM until https://skbug.com/2908 is fixed.
30 virtual uint32_t onGetFlags() const SK_OVERRIDE {
31 return kSkipTiled_Flag;
32 }
33 #endif
34
28 void draw(SkCanvas* canvas, 35 void draw(SkCanvas* canvas,
29 const SkRect& rect, 36 const SkRect& rect,
30 const SkSize& deviceSize, 37 const SkSize& deviceSize,
31 SkPaint::FilterLevel filterLevel, 38 SkPaint::FilterLevel filterLevel,
32 SkImageFilter* input = NULL) { 39 SkImageFilter* input = NULL) {
33 SkRect dstRect; 40 SkRect dstRect;
34 canvas->getTotalMatrix().mapRect(&dstRect, rect); 41 canvas->getTotalMatrix().mapRect(&dstRect, rect);
35 canvas->save(); 42 canvas->save();
36 SkScalar deviceScaleX = SkScalarDiv(deviceSize.width(), dstRect.width()) ; 43 SkScalar deviceScaleX = SkScalarDiv(deviceSize.width(), dstRect.width()) ;
37 SkScalar deviceScaleY = SkScalarDiv(deviceSize.height(), dstRect.height( )); 44 SkScalar deviceScaleY = SkScalarDiv(deviceSize.height(), dstRect.height( ));
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 private: 121 private:
115 typedef GM INHERITED; 122 typedef GM INHERITED;
116 }; 123 };
117 124
118 ////////////////////////////////////////////////////////////////////////////// 125 //////////////////////////////////////////////////////////////////////////////
119 126
120 static GM* MyFactory(void*) { return new ResizeGM; } 127 static GM* MyFactory(void*) { return new ResizeGM; }
121 static GMRegistry reg(MyFactory); 128 static GMRegistry reg(MyFactory);
122 129
123 } 130 }
OLDNEW
« no previous file with comments | « gm/bitmaprect.cpp ('k') | gm/tilemodes_scaled.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698