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

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

Issue 2797583002: cc: Add color space to image decode caches (Closed)
Patch Set: Remove dead code Created 3 years, 8 months 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/layers/recording_source_unittest.cc ('k') | cc/paint/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_PAINT_DISCARDABLE_IMAGE_MAP_H_ 5 #ifndef CC_PAINT_DISCARDABLE_IMAGE_MAP_H_
6 #define CC_PAINT_DISCARDABLE_IMAGE_MAP_H_ 6 #define CC_PAINT_DISCARDABLE_IMAGE_MAP_H_
7 7
8 #include <unordered_map> 8 #include <unordered_map>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 29 matching lines...) Expand all
40 DiscardableImageMap* image_map_; 40 DiscardableImageMap* image_map_;
41 std::unique_ptr<SkCanvas> metadata_canvas_; 41 std::unique_ptr<SkCanvas> metadata_canvas_;
42 }; 42 };
43 43
44 DiscardableImageMap(); 44 DiscardableImageMap();
45 ~DiscardableImageMap(); 45 ~DiscardableImageMap();
46 46
47 bool empty() const { return all_images_.empty(); } 47 bool empty() const { return all_images_.empty(); }
48 void GetDiscardableImagesInRect(const gfx::Rect& rect, 48 void GetDiscardableImagesInRect(const gfx::Rect& rect,
49 float contents_scale, 49 float contents_scale,
50 const gfx::ColorSpace& target_color_space,
50 std::vector<DrawImage>* images) const; 51 std::vector<DrawImage>* images) const;
51 gfx::Rect GetRectForImage(ImageId image_id) const; 52 gfx::Rect GetRectForImage(ImageId image_id) const;
52 53
53 private: 54 private:
54 friend class ScopedMetadataGenerator; 55 friend class ScopedMetadataGenerator;
55 friend class DiscardableImageMapTest; 56 friend class DiscardableImageMapTest;
56 57
57 std::unique_ptr<SkCanvas> BeginGeneratingMetadata(const gfx::Size& bounds); 58 std::unique_ptr<SkCanvas> BeginGeneratingMetadata(const gfx::Size& bounds);
58 void EndGeneratingMetadata(); 59 void EndGeneratingMetadata();
59 60
60 std::vector<std::pair<DrawImage, gfx::Rect>> all_images_; 61 std::vector<std::pair<DrawImage, gfx::Rect>> all_images_;
61 std::unordered_map<ImageId, gfx::Rect> image_id_to_rect_; 62 std::unordered_map<ImageId, gfx::Rect> image_id_to_rect_;
62 63
63 RTree images_rtree_; 64 RTree images_rtree_;
64 }; 65 };
65 66
66 } // namespace cc 67 } // namespace cc
67 68
68 #endif // CC_PAINT_DISCARDABLE_IMAGE_MAP_H_ 69 #endif // CC_PAINT_DISCARDABLE_IMAGE_MAP_H_
OLDNEW
« no previous file with comments | « cc/layers/recording_source_unittest.cc ('k') | cc/paint/discardable_image_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698