| OLD | NEW |
| 1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 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/layers/picture_image_layer.h" | 5 #include "cc/layers/picture_image_layer.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "cc/layers/picture_image_layer_impl.h" | 9 #include "cc/layers/picture_image_layer_impl.h" |
| 10 #include "cc/playback/display_item_list_settings.h" | 10 #include "cc/playback/display_item_list_settings.h" |
| 11 #include "cc/playback/drawing_display_item.h" | 11 #include "cc/playback/drawing_display_item.h" |
| 12 #include "cc/trees/layer_tree_host.h" |
| 12 #include "third_party/skia/include/core/SkCanvas.h" | 13 #include "third_party/skia/include/core/SkCanvas.h" |
| 13 #include "third_party/skia/include/core/SkImage.h" | 14 #include "third_party/skia/include/core/SkImage.h" |
| 14 #include "third_party/skia/include/core/SkPictureRecorder.h" | 15 #include "third_party/skia/include/core/SkPictureRecorder.h" |
| 15 #include "ui/gfx/skia_util.h" | 16 #include "ui/gfx/skia_util.h" |
| 16 | 17 |
| 17 namespace cc { | 18 namespace cc { |
| 18 | 19 |
| 19 scoped_refptr<PictureImageLayer> PictureImageLayer::Create() { | 20 scoped_refptr<PictureImageLayer> PictureImageLayer::Create() { |
| 20 return make_scoped_refptr(new PictureImageLayer()); | 21 return make_scoped_refptr(new PictureImageLayer()); |
| 21 } | 22 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 50 | 51 |
| 51 gfx::Rect PictureImageLayer::PaintableRegion() { | 52 gfx::Rect PictureImageLayer::PaintableRegion() { |
| 52 return gfx::Rect(bounds()); | 53 return gfx::Rect(bounds()); |
| 53 } | 54 } |
| 54 | 55 |
| 55 scoped_refptr<DisplayItemList> PictureImageLayer::PaintContentsToDisplayList( | 56 scoped_refptr<DisplayItemList> PictureImageLayer::PaintContentsToDisplayList( |
| 56 ContentLayerClient::PaintingControlSetting painting_control) { | 57 ContentLayerClient::PaintingControlSetting painting_control) { |
| 57 DCHECK(image_); | 58 DCHECK(image_); |
| 58 DCHECK_GT(image_->width(), 0); | 59 DCHECK_GT(image_->width(), 0); |
| 59 DCHECK_GT(image_->height(), 0); | 60 DCHECK_GT(image_->height(), 0); |
| 61 DCHECK(layer_tree_host()); |
| 60 | 62 |
| 61 // Picture image layers can be used with GatherPixelRefs, so cached SkPictures | |
| 62 // are currently required. | |
| 63 DisplayItemListSettings settings; | 63 DisplayItemListSettings settings; |
| 64 settings.use_cached_picture = true; | 64 settings.use_cached_picture = |
| 65 layer_tree_host()->settings().use_cached_picture_raster; |
| 65 scoped_refptr<DisplayItemList> display_list = | 66 scoped_refptr<DisplayItemList> display_list = |
| 66 DisplayItemList::Create(PaintableRegion(), settings); | 67 DisplayItemList::Create(PaintableRegion(), settings); |
| 67 | 68 |
| 68 SkPictureRecorder recorder; | 69 SkPictureRecorder recorder; |
| 69 SkCanvas* canvas = | 70 SkCanvas* canvas = |
| 70 recorder.beginRecording(gfx::RectToSkRect(PaintableRegion())); | 71 recorder.beginRecording(gfx::RectToSkRect(PaintableRegion())); |
| 71 | 72 |
| 72 SkScalar content_to_layer_scale_x = | 73 SkScalar content_to_layer_scale_x = |
| 73 SkFloatToScalar(static_cast<float>(bounds().width()) / image_->width()); | 74 SkFloatToScalar(static_cast<float>(bounds().width()) / image_->width()); |
| 74 SkScalar content_to_layer_scale_y = | 75 SkScalar content_to_layer_scale_y = |
| (...skipping 14 matching lines...) Expand all Loading... |
| 89 | 90 |
| 90 bool PictureImageLayer::FillsBoundsCompletely() const { | 91 bool PictureImageLayer::FillsBoundsCompletely() const { |
| 91 return false; | 92 return false; |
| 92 } | 93 } |
| 93 | 94 |
| 94 size_t PictureImageLayer::GetApproximateUnsharedMemoryUsage() const { | 95 size_t PictureImageLayer::GetApproximateUnsharedMemoryUsage() const { |
| 95 return 0; | 96 return 0; |
| 96 } | 97 } |
| 97 | 98 |
| 98 } // namespace cc | 99 } // namespace cc |
| OLD | NEW |