| 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 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 #ifndef GrBlurUtils_DEFINED | 8 #ifndef GrBlurUtils_DEFINED |
| 9 #define GrBlurUtils_DEFINED | 9 #define GrBlurUtils_DEFINED |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 */ | 46 */ |
| 47 void drawPathWithMaskFilter(GrContext*, | 47 void drawPathWithMaskFilter(GrContext*, |
| 48 GrDrawContext*, | 48 GrDrawContext*, |
| 49 GrRenderTarget*, | 49 GrRenderTarget*, |
| 50 const GrClip&, | 50 const GrClip&, |
| 51 const SkPath& path, | 51 const SkPath& path, |
| 52 GrPaint*, | 52 GrPaint*, |
| 53 const SkMatrix& viewMatrix, | 53 const SkMatrix& viewMatrix, |
| 54 const SkMaskFilter*, | 54 const SkMaskFilter*, |
| 55 const SkPathEffect*, | 55 const SkPathEffect*, |
| 56 const GrStrokeInfo&); | 56 const GrStrokeInfo&, |
| 57 bool pathIsMutable); |
| 57 | 58 |
| 58 }; | 59 }; |
| 59 | 60 |
| 60 #endif | 61 #endif |
| OLD | NEW |