| 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 | 9 |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 } | 102 } |
| 103 | 103 |
| 104 private: | 104 private: |
| 105 SkTDArray<uint16_t> fGlyphs; | 105 SkTDArray<uint16_t> fGlyphs; |
| 106 SkAutoTUnref<const SkTextBlob> fBlob; | 106 SkAutoTUnref<const SkTextBlob> fBlob; |
| 107 SkAutoTUnref<SkShader> fShader; | 107 SkAutoTUnref<SkShader> fShader; |
| 108 | 108 |
| 109 typedef skiagm::GM INHERITED; | 109 typedef skiagm::GM INHERITED; |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 DEF_GM( return SkNEW_ARGS(TextBlobShaderGM, ("Blobber")); ) | 112 DEF_GM(return new TextBlobShaderGM("Blobber");) |
| OLD | NEW |