| 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 "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkDashPathEffect.h" | 10 #include "SkDashPathEffect.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 } | 80 } |
| 81 | 81 |
| 82 virtual SkISize onISize() SK_OVERRIDE { | 82 virtual SkISize onISize() SK_OVERRIDE { |
| 83 return SkISize::Make(1200, 480); | 83 return SkISize::Make(1200, 480); |
| 84 } | 84 } |
| 85 | 85 |
| 86 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 86 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
| 87 if (true) { test_nulldev(canvas); } | 87 if (true) { test_nulldev(canvas); } |
| 88 SkPaint paint; | 88 SkPaint paint; |
| 89 paint.setAntiAlias(true); | 89 paint.setAntiAlias(true); |
| 90 sk_tool_utils::set_portable_typeface(&paint); |
| 90 | 91 |
| 91 paint.setTextSize(kBelowThreshold_TextSize); | 92 paint.setTextSize(kBelowThreshold_TextSize); |
| 92 draw_text_set(canvas, paint); | 93 draw_text_set(canvas, paint); |
| 93 | 94 |
| 94 canvas->translate(600, 0); | 95 canvas->translate(600, 0); |
| 95 paint.setTextSize(kAboveThreshold_TextSize); | 96 paint.setTextSize(kAboveThreshold_TextSize); |
| 96 draw_text_set(canvas, paint); | 97 draw_text_set(canvas, paint); |
| 97 } | 98 } |
| 98 | 99 |
| 99 private: | 100 private: |
| 100 typedef skiagm::GM INHERITED; | 101 typedef skiagm::GM INHERITED; |
| 101 }; | 102 }; |
| 102 | 103 |
| 103 DEF_GM( return SkNEW(StrokeTextGM); ) | 104 DEF_GM( return SkNEW(StrokeTextGM); ) |
| OLD | NEW |