OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <time.h> | 5 #include <time.h> |
6 | 6 |
7 #include "SkMatrix.h" | 7 #include "SkMatrix.h" |
8 #include "SkRegion.h" | 8 #include "SkRegion.h" |
9 #include "SkUtils.h" | 9 #include "SkUtils.h" |
10 | 10 |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 size_t offset = (i + bitmap_start_y) * row_words + bitmap_start_x; | 280 size_t offset = (i + bitmap_start_y) * row_words + bitmap_start_x; |
281 for (int j = 0; j < width; j++) { | 281 for (int j = 0; j < width; j++) { |
282 adjustor(data + offset + j); | 282 adjustor(data + offset + j); |
283 } | 283 } |
284 } | 284 } |
285 } | 285 } |
286 } | 286 } |
287 | 287 |
288 } // namespace gfx | 288 } // namespace gfx |
289 | 289 |
OLD | NEW |