OLD | NEW |
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 #include <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include "cc/layers/content_layer_client.h" | 7 #include "cc/layers/content_layer_client.h" |
8 #include "cc/layers/picture_layer.h" | 8 #include "cc/layers/picture_layer.h" |
9 #include "cc/output/copy_output_request.h" | 9 #include "cc/output/copy_output_request.h" |
10 #include "cc/playback/display_item_list.h" | 10 #include "cc/playback/display_item_list.h" |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 private: | 146 private: |
147 gfx::Size size_; | 147 gfx::Size size_; |
148 bool blue_top_; | 148 bool blue_top_; |
149 }; | 149 }; |
150 | 150 |
151 class LayerTreeHostTilesTestPartialInvalidation | 151 class LayerTreeHostTilesTestPartialInvalidation |
152 : public LayerTreeHostTilesPixelTest { | 152 : public LayerTreeHostTilesPixelTest { |
153 public: | 153 public: |
154 LayerTreeHostTilesTestPartialInvalidation() | 154 LayerTreeHostTilesTestPartialInvalidation() |
155 : client_(gfx::Size(200, 200)), | 155 : client_(gfx::Size(200, 200)), |
156 picture_layer_(PictureLayer::Create(layer_settings(), &client_)) { | 156 picture_layer_(PictureLayer::Create(&client_)) { |
157 picture_layer_->SetBounds(gfx::Size(200, 200)); | 157 picture_layer_->SetBounds(gfx::Size(200, 200)); |
158 picture_layer_->SetIsDrawable(true); | 158 picture_layer_->SetIsDrawable(true); |
159 } | 159 } |
160 | 160 |
161 void DidCommitAndDrawFrame() override { | 161 void DidCommitAndDrawFrame() override { |
162 switch (layer_tree_host()->source_frame_number()) { | 162 switch (layer_tree_host()->source_frame_number()) { |
163 case 1: | 163 case 1: |
164 // We have done one frame, so the layer's content has been rastered. | 164 // We have done one frame, so the layer's content has been rastered. |
165 // Now we change the picture behind it to record something completely | 165 // Now we change the picture behind it to record something completely |
166 // different, but we give a smaller invalidation rect. The layer should | 166 // different, but we give a smaller invalidation rect. The layer should |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 FullRaster_SingleThread_GpuRaster) { | 234 FullRaster_SingleThread_GpuRaster) { |
235 RunRasterPixelTest( | 235 RunRasterPixelTest( |
236 false, FULL_GPU, picture_layer_, | 236 false, FULL_GPU, picture_layer_, |
237 base::FilePath(FILE_PATH_LITERAL("blue_yellow_flipped.png"))); | 237 base::FilePath(FILE_PATH_LITERAL("blue_yellow_flipped.png"))); |
238 } | 238 } |
239 | 239 |
240 } // namespace | 240 } // namespace |
241 } // namespace cc | 241 } // namespace cc |
242 | 242 |
243 #endif // !defined(OS_ANDROID) | 243 #endif // !defined(OS_ANDROID) |
OLD | NEW |