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 #ifndef SkDiffContext_DEFINED | 8 #ifndef SkDiffContext_DEFINED |
9 #define SkDiffContext_DEFINED | 9 #define SkDiffContext_DEFINED |
10 | 10 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 // We use linked list for the records so that their pointers remain stable.
A resizable array | 107 // We use linked list for the records so that their pointers remain stable.
A resizable array |
108 // might change its pointers, which would make it harder for async diffs to
record their | 108 // might change its pointers, which would make it harder for async diffs to
record their |
109 // results. | 109 // results. |
110 DiffRecord * fRecords; | 110 DiffRecord * fRecords; |
111 | 111 |
112 SkImageDiffer** fDiffers; | 112 SkImageDiffer** fDiffers; |
113 int fDifferCount; | 113 int fDifferCount; |
114 }; | 114 }; |
115 | 115 |
116 #endif | 116 #endif |
OLD | NEW |