| 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 { | 19 uint32_t onGetFlags() const SK_OVERRIDE { |
| 20 return kSkipTiled_Flag; | 20 return kSkipTiled_Flag; |
| 21 } | 21 } |
| 22 | 22 |
| 23 SkString onShortName() SK_OVERRIDE { | 23 SkString onShortName() SK_OVERRIDE { |
| 24 return SkString("getpostextpath"); | 24 return SkString("getpostextpath"); |
| 25 } | 25 } |
| 26 | 26 |
| 27 SkISize onISize() SK_OVERRIDE { return SkISize::Make(480, 780); } | 27 SkISize onISize() SK_OVERRIDE { return SkISize::Make(480, 780); } |
| 28 | 28 |
| 29 static void strokePath(SkCanvas* canvas, const SkPath& path) { | 29 static void strokePath(SkCanvas* canvas, const SkPath& path) { |
| 30 SkPaint paint; | 30 SkPaint paint; |
| 31 paint.setAntiAlias(true); | 31 paint.setAntiAlias(true); |
| 32 paint.setColor(SK_ColorRED); | 32 paint.setColor(SK_ColorRED); |
| 33 paint.setStyle(SkPaint::kStroke_Style); | 33 paint.setStyle(SkPaint::kStroke_Style); |
| 34 canvas->drawPath(path, paint); | 34 canvas->drawPath(path, paint); |
| 35 } | 35 } |
| 36 | 36 |
| 37 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 37 void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
| 38 // explicitly add spaces, to test a prev. bug | 38 // explicitly add spaces, to test a prev. bug |
| 39 const char* text = "Ham bur ge fons"; | 39 const char* text = "Ham bur ge fons"; |
| 40 int len = SkToInt(strlen(text)); | 40 int len = SkToInt(strlen(text)); |
| 41 SkPath path; | 41 SkPath path; |
| 42 | 42 |
| 43 SkPaint paint; | 43 SkPaint paint; |
| 44 paint.setAntiAlias(true); | 44 paint.setAntiAlias(true); |
| 45 sk_tool_utils::set_portable_typeface(&paint); | 45 sk_tool_utils::set_portable_typeface(&paint); |
| 46 paint.setTextSize(SkIntToScalar(48)); | 46 paint.setTextSize(SkIntToScalar(48)); |
| 47 | 47 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 69 canvas->drawPosText(text, len, &pos[0], paint); | 69 canvas->drawPosText(text, len, &pos[0], paint); |
| 70 paint.getPosTextPath(text, len, &pos[0], &path); | 70 paint.getPosTextPath(text, len, &pos[0], &path); |
| 71 strokePath(canvas, path); | 71 strokePath(canvas, path); |
| 72 } | 72 } |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 ////////////////////////////////////////////////////////////////////////////// | 75 ////////////////////////////////////////////////////////////////////////////// |
| 76 | 76 |
| 77 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } | 77 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } |
| 78 static skiagm::GMRegistry gR(F); | 78 static skiagm::GMRegistry gR(F); |
| OLD | NEW |