OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef SKIA_EXT_LAZY_PIXEL_REF_UTILS_H_ | 5 #ifndef SKIA_EXT_LAZY_PIXEL_REF_UTILS_H_ |
6 #define SKIA_EXT_LAZY_PIXEL_REF_UTILS_H_ | 6 #define SKIA_EXT_LAZY_PIXEL_REF_UTILS_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "SkPicture.h" | 10 #include "SkPicture.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 SkRect pixel_ref_rect; | 21 SkRect pixel_ref_rect; |
22 }; | 22 }; |
23 | 23 |
24 static void GatherPixelRefs( | 24 static void GatherPixelRefs( |
25 SkPicture* picture, | 25 SkPicture* picture, |
26 std::vector<PositionLazyPixelRef>* lazy_pixel_refs); | 26 std::vector<PositionLazyPixelRef>* lazy_pixel_refs); |
27 }; | 27 }; |
28 | 28 |
29 typedef std::vector<LazyPixelRefUtils::PositionLazyPixelRef> LazyPixelRefList; | 29 typedef std::vector<LazyPixelRefUtils::PositionLazyPixelRef> LazyPixelRefList; |
30 | 30 |
31 } | 31 } // namespace skia |
32 | 32 |
33 #endif | 33 #endif |
OLD | NEW |