| 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 "SkDrawLooper.h" | 8 #include "SkDrawLooper.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkMatrix.h" | 10 #include "SkMatrix.h" |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 if (firstTime) { | 52 if (firstTime) { |
| 53 *dst = r; | 53 *dst = r; |
| 54 } else { | 54 } else { |
| 55 dst->join(r); | 55 dst->join(r); |
| 56 } | 56 } |
| 57 } else { | 57 } else { |
| 58 break; | 58 break; |
| 59 } | 59 } |
| 60 } | 60 } |
| 61 } | 61 } |
| 62 |
| 63 bool SkDrawLooper::asABlurShadow(BlurShadowRec*) const { |
| 64 return false; |
| 65 } |
| OLD | NEW |