| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #include "SkAAClip.h" | 9 #include "SkAAClip.h" |
| 10 #include "SkAtomics.h" | 10 #include "../private/SkAtomics.h" |
| 11 #include "SkBlitter.h" | 11 #include "SkBlitter.h" |
| 12 #include "SkColorPriv.h" | 12 #include "SkColorPriv.h" |
| 13 #include "SkPath.h" | 13 #include "SkPath.h" |
| 14 #include "SkScan.h" | 14 #include "SkScan.h" |
| 15 #include "SkUtils.h" | 15 #include "SkUtils.h" |
| 16 | 16 |
| 17 class AutoAAClipValidate { | 17 class AutoAAClipValidate { |
| 18 public: | 18 public: |
| 19 AutoAAClipValidate(const SkAAClip& clip) : fClip(clip) { | 19 AutoAAClipValidate(const SkAAClip& clip) : fClip(clip) { |
| 20 fClip.validate(); | 20 fClip.validate(); |
| (...skipping 2194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2215 rowMask.fBounds.fBottom = y + 1; | 2215 rowMask.fBounds.fBottom = y + 1; |
| 2216 fBlitter->blitMask(rowMask, rowMask.fBounds); | 2216 fBlitter->blitMask(rowMask, rowMask.fBounds); |
| 2217 src = (const void*)((const char*)src + srcRB); | 2217 src = (const void*)((const char*)src + srcRB); |
| 2218 } while (++y < localStopY); | 2218 } while (++y < localStopY); |
| 2219 } while (y < stopY); | 2219 } while (y < stopY); |
| 2220 } | 2220 } |
| 2221 | 2221 |
| 2222 const SkPixmap* SkAAClipBlitter::justAnOpaqueColor(uint32_t* value) { | 2222 const SkPixmap* SkAAClipBlitter::justAnOpaqueColor(uint32_t* value) { |
| 2223 return nullptr; | 2223 return nullptr; |
| 2224 } | 2224 } |
| OLD | NEW |