| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BD-style license that can be | 4 * Use of this source code is governed by a BD-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 #if SK_SUPPORT_GPU | 10 #if SK_SUPPORT_GPU |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 SkString onShortName() override { | 24 SkString onShortName() override { |
| 25 return SkString("textblobuseaftergpufree"); | 25 return SkString("textblobuseaftergpufree"); |
| 26 } | 26 } |
| 27 | 27 |
| 28 SkISize onISize() override { | 28 SkISize onISize() override { |
| 29 return SkISize::Make(kWidth, kHeight); | 29 return SkISize::Make(kWidth, kHeight); |
| 30 } | 30 } |
| 31 | 31 |
| 32 void onDraw(SkCanvas* canvas) override { | 32 void onDraw(SkCanvas* canvas) override { |
| 33 // This GM exists to test a specific feature of the GPU backend. | 33 // This GM exists to test a specific feature of the GPU backend. |
| 34 if (NULL == canvas->getGrContext()) { | 34 if (nullptr == canvas->getGrContext()) { |
| 35 this->drawGpuOnlyMessage(canvas); | 35 this->drawGpuOnlyMessage(canvas); |
| 36 return; | 36 return; |
| 37 } | 37 } |
| 38 | 38 |
| 39 const char text[] = "Hamburgefons"; | 39 const char text[] = "Hamburgefons"; |
| 40 | 40 |
| 41 SkPaint paint; | 41 SkPaint paint; |
| 42 sk_tool_utils::set_portable_typeface(&paint); | 42 sk_tool_utils::set_portable_typeface(&paint); |
| 43 paint.setAntiAlias(true); | 43 paint.setAntiAlias(true); |
| 44 paint.setTextSize(20); | 44 paint.setTextSize(20); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 66 static const int kHeight = 200; | 66 static const int kHeight = 200; |
| 67 | 67 |
| 68 typedef GM INHERITED; | 68 typedef GM INHERITED; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 ////////////////////////////////////////////////////////////////////////////// | 71 ////////////////////////////////////////////////////////////////////////////// |
| 72 | 72 |
| 73 DEF_GM(return new TextBlobUseAfterGpuFree;) | 73 DEF_GM(return new TextBlobUseAfterGpuFree;) |
| 74 } | 74 } |
| 75 #endif | 75 #endif |
| OLD | NEW |