| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "SkBlurMask.h" | 9 #include "SkBlurMask.h" |
| 10 #include "SkBlurMaskFilter.h" | 10 #include "SkBlurMaskFilter.h" |
| 11 #include "SkCanvas.h" | 11 #include "SkCanvas.h" |
| 12 #include "SkGraphics.h" | 12 #include "SkGraphics.h" |
| 13 #include "SkLayerDrawLooper.h" | 13 #include "SkLayerDrawLooper.h" |
| 14 #include "SkRandom.h" | 14 #include "SkRandom.h" |
| 15 | 15 |
| 16 #define WIDTH 200 | 16 #define WIDTH 200 |
| 17 #define HEIGHT 200 | 17 #define HEIGHT 200 |
| 18 | 18 |
| 19 class DrawLooperGM : public skiagm::GM { | 19 class DrawLooperGM : public skiagm::GM { |
| 20 public: | 20 public: |
| 21 DrawLooperGM() : fLooper(NULL) { | 21 DrawLooperGM() : fLooper(NULL) { |
| 22 this->setBGColor(0xFFDDDDDD); | 22 this->setBGColor(0xFFDDDDDD); |
| 23 } | 23 } |
| 24 | 24 |
| 25 virtual ~DrawLooperGM() { | 25 virtual ~DrawLooperGM() { |
| 26 SkSafeUnref(fLooper); | 26 SkSafeUnref(fLooper); |
| 27 } | 27 } |
| 28 | 28 |
| 29 protected: | 29 protected: |
| 30 virtual SkISize onISize() SK_OVERRIDE { | 30 virtual SkISize onISize() override { |
| 31 return SkISize::Make(520, 160); | 31 return SkISize::Make(520, 160); |
| 32 } | 32 } |
| 33 | 33 |
| 34 SkString onShortName() SK_OVERRIDE { | 34 SkString onShortName() override { |
| 35 return SkString("drawlooper"); | 35 return SkString("drawlooper"); |
| 36 } | 36 } |
| 37 | 37 |
| 38 void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 38 void onDraw(SkCanvas* canvas) override { |
| 39 this->init(); | 39 this->init(); |
| 40 | 40 |
| 41 SkPaint paint; | 41 SkPaint paint; |
| 42 paint.setAntiAlias(true); | 42 paint.setAntiAlias(true); |
| 43 sk_tool_utils::set_portable_typeface(&paint); | 43 sk_tool_utils::set_portable_typeface(&paint); |
| 44 paint.setTextSize(SkIntToScalar(72)); | 44 paint.setTextSize(SkIntToScalar(72)); |
| 45 paint.setLooper(fLooper); | 45 paint.setLooper(fLooper); |
| 46 | 46 |
| 47 canvas->drawCircle(SkIntToScalar(50), SkIntToScalar(50), | 47 canvas->drawCircle(SkIntToScalar(50), SkIntToScalar(50), |
| 48 SkIntToScalar(30), paint); | 48 SkIntToScalar(30), paint); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 fLooper = looperBuilder.detachLooper(); | 94 fLooper = looperBuilder.detachLooper(); |
| 95 } | 95 } |
| 96 | 96 |
| 97 typedef GM INHERITED; | 97 typedef GM INHERITED; |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 ////////////////////////////////////////////////////////////////////////////// | 100 ////////////////////////////////////////////////////////////////////////////// |
| 101 | 101 |
| 102 static skiagm::GM* MyFactory(void*) { return new DrawLooperGM; } | 102 static skiagm::GM* MyFactory(void*) { return new DrawLooperGM; } |
| 103 static skiagm::GMRegistry reg(MyFactory); | 103 static skiagm::GMRegistry reg(MyFactory); |
| OLD | NEW |