| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * Copyright 2014 Google Inc. | 2  * Copyright 2014 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 "SkMatrixImageFilter.h" | 9 #include "SkMatrixImageFilter.h" | 
| 10 #include "SkRandom.h" | 10 #include "SkRandom.h" | 
| 11 | 11 | 
| 12 #define WIDTH 640 | 12 #define WIDTH 640 | 
| 13 #define HEIGHT 480 | 13 #define HEIGHT 480 | 
| 14 | 14 | 
| 15 #define RESIZE_FACTOR SkIntToScalar(2) | 15 #define RESIZE_FACTOR SkIntToScalar(2) | 
| 16 | 16 | 
| 17 namespace skiagm { | 17 namespace skiagm { | 
| 18 | 18 | 
| 19 class ImageResizeTiledGM : public GM { | 19 class ImageResizeTiledGM : public GM { | 
| 20 public: | 20 public: | 
| 21     ImageResizeTiledGM() { | 21     ImageResizeTiledGM() { | 
| 22     } | 22     } | 
| 23 | 23 | 
| 24 protected: | 24 protected: | 
|  | 25     virtual uint32_t onGetFlags() const SK_OVERRIDE { return kNoBBH_Flag; } | 
|  | 26 | 
| 25     virtual SkString onShortName() SK_OVERRIDE { | 27     virtual SkString onShortName() SK_OVERRIDE { | 
| 26         return SkString("imageresizetiled"); | 28         return SkString("imageresizetiled"); | 
| 27     } | 29     } | 
| 28 | 30 | 
| 29     virtual SkISize onISize() SK_OVERRIDE { | 31     virtual SkISize onISize() SK_OVERRIDE { | 
| 30         return SkISize::Make(WIDTH, HEIGHT); | 32         return SkISize::Make(WIDTH, HEIGHT); | 
| 31     } | 33     } | 
| 32 | 34 | 
| 33     virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 35     virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 
| 34         SkPaint paint; | 36         SkPaint paint; | 
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 70 | 72 | 
| 71 private: | 73 private: | 
| 72     typedef GM INHERITED; | 74     typedef GM INHERITED; | 
| 73 }; | 75 }; | 
| 74 | 76 | 
| 75 ////////////////////////////////////////////////////////////////////////////// | 77 ////////////////////////////////////////////////////////////////////////////// | 
| 76 | 78 | 
| 77 DEF_GM(return new ImageResizeTiledGM(); ) | 79 DEF_GM(return new ImageResizeTiledGM(); ) | 
| 78 | 80 | 
| 79 } | 81 } | 
| OLD | NEW | 
|---|