OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 | 9 |
10 #include "SkPictureImageFilter.h" | 10 #include "SkPictureImageFilter.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 SkString onShortName() override { | 21 SkString onShortName() override { |
22 return SkString("pictureimagefilter"); | 22 return SkString("pictureimagefilter"); |
23 } | 23 } |
24 | 24 |
25 void makePicture() { | 25 void makePicture() { |
26 SkPictureRecorder recorder; | 26 SkPictureRecorder recorder; |
27 SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0); | 27 SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0); |
28 canvas->clear(SK_ColorBLACK); | 28 canvas->clear(SK_ColorBLACK); |
29 SkPaint paint; | 29 SkPaint paint; |
30 paint.setAntiAlias(true); | 30 paint.setAntiAlias(true); |
31 sk_tool_utils::set_portable_typeface(&paint); | 31 sk_tool_utils::set_portable_typeface_always(&paint); |
32 paint.setColor(0xFFFFFFFF); | 32 paint.setColor(0xFFFFFFFF); |
33 paint.setTextSize(SkIntToScalar(96)); | 33 paint.setTextSize(SkIntToScalar(96)); |
34 const char* str = "e"; | 34 const char* str = "e"; |
35 canvas->drawText(str, strlen(str), SkIntToScalar(20), SkIntToScalar(70),
paint); | 35 canvas->drawText(str, strlen(str), SkIntToScalar(20), SkIntToScalar(70),
paint); |
36 fPicture.reset(recorder.endRecording()); | 36 fPicture.reset(recorder.endRecording()); |
37 } | 37 } |
38 | 38 |
39 SkISize onISize() override { return SkISize::Make(600, 300); } | 39 SkISize onISize() override { return SkISize::Make(600, 300); } |
40 | 40 |
41 void onOnceBeforeDraw() override { | 41 void onOnceBeforeDraw() override { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 } | 102 } |
103 | 103 |
104 private: | 104 private: |
105 SkAutoTUnref<SkPicture> fPicture; | 105 SkAutoTUnref<SkPicture> fPicture; |
106 typedef GM INHERITED; | 106 typedef GM INHERITED; |
107 }; | 107 }; |
108 | 108 |
109 /////////////////////////////////////////////////////////////////////////////// | 109 /////////////////////////////////////////////////////////////////////////////// |
110 | 110 |
111 DEF_GM( return new PictureImageFilterGM; ) | 111 DEF_GM( return new PictureImageFilterGM; ) |
OLD | NEW |