| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "SkShader.h" | 9 #include "SkShader.h" |
| 10 using namespace skiagm; | 10 using namespace skiagm; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 fDrawProc(canvas); | 100 fDrawProc(canvas); |
| 101 } | 101 } |
| 102 | 102 |
| 103 SkISize skiagm::SimpleGM::onISize() { | 103 SkISize skiagm::SimpleGM::onISize() { |
| 104 return fSize; | 104 return fSize; |
| 105 } | 105 } |
| 106 | 106 |
| 107 SkString skiagm::SimpleGM::onShortName() { | 107 SkString skiagm::SimpleGM::onShortName() { |
| 108 return fName; | 108 return fName; |
| 109 } | 109 } |
| 110 | |
| OLD | NEW |