OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "cc/playback/display_item_list.h" | 5 #include "cc/playback/display_item_list.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 DCHECK(image_map_.empty()); | 301 DCHECK(image_map_.empty()); |
302 | 302 |
303 gfx::Rect bounds = rtree_.GetBounds(); | 303 gfx::Rect bounds = rtree_.GetBounds(); |
304 DiscardableImageMap::ScopedMetadataGenerator generator( | 304 DiscardableImageMap::ScopedMetadataGenerator generator( |
305 &image_map_, gfx::Size(bounds.right(), bounds.bottom())); | 305 &image_map_, gfx::Size(bounds.right(), bounds.bottom())); |
306 Raster(generator.canvas(), nullptr, gfx::Rect(), 1.f); | 306 Raster(generator.canvas(), nullptr, gfx::Rect(), 1.f); |
307 } | 307 } |
308 | 308 |
309 void DisplayItemList::GetDiscardableImagesInRect( | 309 void DisplayItemList::GetDiscardableImagesInRect( |
310 const gfx::Rect& rect, | 310 const gfx::Rect& rect, |
311 const gfx::SizeF& raster_scales, | 311 float contents_scale, |
312 std::vector<DrawImage>* images) { | 312 std::vector<DrawImage>* images) { |
313 image_map_.GetDiscardableImagesInRect(rect, raster_scales, images); | 313 image_map_.GetDiscardableImagesInRect(rect, contents_scale, images); |
314 } | 314 } |
315 | 315 |
316 } // namespace cc | 316 } // namespace cc |
OLD | NEW |