| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkPaint.h" | 10 #include "SkPaint.h" |
| 11 #include "SkRandom.h" | 11 #include "SkRandom.h" |
| 12 #include "SkTemplates.h" | 12 #include "SkTemplates.h" |
| 13 | 13 |
| 14 class GetPosTextPathGM : public skiagm::GM { | 14 class GetPosTextPathGM : public skiagm::GM { |
| 15 public: | 15 public: |
| 16 GetPosTextPathGM() {} | 16 GetPosTextPathGM() {} |
| 17 | 17 |
| 18 protected: | 18 protected: |
| 19 virtual uint32_t onGetFlags() const SK_OVERRIDE { |
| 20 return kSkipTiled_Flag; |
| 21 } |
| 22 |
| 19 SkString onShortName() { | 23 SkString onShortName() { |
| 20 return SkString("getpostextpath"); | 24 return SkString("getpostextpath"); |
| 21 } | 25 } |
| 22 | 26 |
| 23 SkISize onISize() { return skiagm::make_isize(480, 780); } | 27 SkISize onISize() { return skiagm::make_isize(480, 780); } |
| 24 | 28 |
| 25 static void strokePath(SkCanvas* canvas, const SkPath& path) { | 29 static void strokePath(SkCanvas* canvas, const SkPath& path) { |
| 26 SkPaint paint; | 30 SkPaint paint; |
| 27 paint.setAntiAlias(true); | 31 paint.setAntiAlias(true); |
| 28 paint.setColor(SK_ColorRED); | 32 paint.setColor(SK_ColorRED); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 canvas->drawPosText(text, len, &pos[0], paint); | 68 canvas->drawPosText(text, len, &pos[0], paint); |
| 65 paint.getPosTextPath(text, len, &pos[0], &path); | 69 paint.getPosTextPath(text, len, &pos[0], &path); |
| 66 strokePath(canvas, path); | 70 strokePath(canvas, path); |
| 67 } | 71 } |
| 68 }; | 72 }; |
| 69 | 73 |
| 70 ////////////////////////////////////////////////////////////////////////////// | 74 ////////////////////////////////////////////////////////////////////////////// |
| 71 | 75 |
| 72 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } | 76 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } |
| 73 static skiagm::GMRegistry gR(F); | 77 static skiagm::GMRegistry gR(F); |
| OLD | NEW |