Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: cc/playback/discardable_image_map.h

Issue 2523673004: [NOT FOR COMMIT] Fully replace SkCanvas uses.
Patch Set: Support Android build. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/playback/compositing_display_item.cc ('k') | cc/playback/discardable_image_map.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_ 5 #ifndef CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_
6 #define CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_ 6 #define CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_
7 7
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
11 #include "cc/base/cc_export.h" 11 #include "cc/base/cc_export.h"
12 #include "cc/base/rtree.h" 12 #include "cc/base/rtree.h"
13 #include "cc/playback/draw_image.h" 13 #include "cc/playback/draw_image.h"
14 #include "third_party/skia/include/core/SkCanvas.h" 14 #include "skia/ext/cdl_paint.h"
15 #include "third_party/skia/include/core/SkRefCnt.h" 15 #include "third_party/skia/include/core/SkRefCnt.h"
16 #include "ui/gfx/geometry/rect.h" 16 #include "ui/gfx/geometry/rect.h"
17 #include "ui/gfx/geometry/size.h" 17 #include "ui/gfx/geometry/size.h"
18 18
19 namespace cc { 19 namespace cc {
20 20
21 // Helper function to apply the matrix to the rect and return the result. 21 // Helper function to apply the matrix to the rect and return the result.
22 SkRect MapRect(const SkMatrix& matrix, const SkRect& src); 22 SkRect MapRect(const SkMatrix& matrix, const SkRect& src);
23 23
24 // This class is used for generating discardable images data (see DrawImage 24 // This class is used for generating discardable images data (see DrawImage
25 // for the type of data it stores). It allows the client to query a particular 25 // for the type of data it stores). It allows the client to query a particular
26 // rect and get back a list of DrawImages in that rect. 26 // rect and get back a list of DrawImages in that rect.
27 class CC_EXPORT DiscardableImageMap { 27 class CC_EXPORT DiscardableImageMap {
28 public: 28 public:
29 class CC_EXPORT ScopedMetadataGenerator { 29 class CC_EXPORT ScopedMetadataGenerator {
30 public: 30 public:
31 ScopedMetadataGenerator(DiscardableImageMap* image_map, 31 ScopedMetadataGenerator(DiscardableImageMap* image_map,
32 const gfx::Size& bounds); 32 const gfx::Size& bounds);
33 ~ScopedMetadataGenerator(); 33 ~ScopedMetadataGenerator();
34 34
35 SkCanvas* canvas() { return metadata_canvas_.get(); } 35 CdlCanvas* canvas() { return metadata_canvas_.get(); }
36 36
37 private: 37 private:
38 DiscardableImageMap* image_map_; 38 DiscardableImageMap* image_map_;
39 std::unique_ptr<SkCanvas> metadata_canvas_; 39 // TODO(cdl): switch to unique_ptr.
40 std::unique_ptr<CdlCanvas> metadata_canvas_;
40 }; 41 };
41 42
42 DiscardableImageMap(); 43 DiscardableImageMap();
43 ~DiscardableImageMap(); 44 ~DiscardableImageMap();
44 45
45 bool empty() const { return all_images_.empty(); } 46 bool empty() const { return all_images_.empty(); }
46 void GetDiscardableImagesInRect(const gfx::Rect& rect, 47 void GetDiscardableImagesInRect(const gfx::Rect& rect,
47 const gfx::SizeF& raster_scales, 48 const gfx::SizeF& raster_scales,
48 std::vector<DrawImage>* images) const; 49 std::vector<DrawImage>* images) const;
49 50
50 private: 51 private:
51 friend class ScopedMetadataGenerator; 52 friend class ScopedMetadataGenerator;
52 friend class DiscardableImageMapTest; 53 friend class DiscardableImageMapTest;
53 54
54 std::unique_ptr<SkCanvas> BeginGeneratingMetadata(const gfx::Size& bounds); 55 std::unique_ptr<CdlCanvas> BeginGeneratingMetadata(const gfx::Size& bounds);
55 void EndGeneratingMetadata(); 56 void EndGeneratingMetadata();
56 57
57 std::vector<std::pair<DrawImage, gfx::Rect>> all_images_; 58 std::vector<std::pair<DrawImage, gfx::Rect>> all_images_;
58 RTree images_rtree_; 59 RTree images_rtree_;
59 }; 60 };
60 61
61 } // namespace cc 62 } // namespace cc
62 63
63 #endif // CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_ 64 #endif // CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_
OLDNEW
« no previous file with comments | « cc/playback/compositing_display_item.cc ('k') | cc/playback/discardable_image_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698