| OLD | NEW | 
|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/debug/lap_timer.h" | 5 #include "cc/debug/lap_timer.h" | 
| 6 #include "cc/resources/resource_provider.h" | 6 #include "cc/resources/resource_provider.h" | 
| 7 #include "cc/resources/scoped_resource.h" | 7 #include "cc/resources/scoped_resource.h" | 
| 8 #include "cc/test/fake_output_surface.h" | 8 #include "cc/test/fake_output_surface.h" | 
| 9 #include "cc/test/fake_output_surface_client.h" | 9 #include "cc/test/fake_output_surface_client.h" | 
| 10 #include "cc/test/fake_picture_layer_tiling_client.h" | 10 #include "cc/test/fake_picture_layer_tiling_client.h" | 
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 42   } | 42   } | 
| 43 | 43 | 
| 44   void SetUp() override { | 44   void SetUp() override { | 
| 45     LayerTreeSettings defaults; | 45     LayerTreeSettings defaults; | 
| 46     picture_layer_tiling_client_.SetTileSize(gfx::Size(256, 256)); | 46     picture_layer_tiling_client_.SetTileSize(gfx::Size(256, 256)); | 
| 47     scoped_refptr<FakePicturePileImpl> pile = | 47     scoped_refptr<FakePicturePileImpl> pile = | 
| 48         FakePicturePileImpl::CreateFilledPileWithDefaultTileSize( | 48         FakePicturePileImpl::CreateFilledPileWithDefaultTileSize( | 
| 49             gfx::Size(256 * 50, 256 * 50)); | 49             gfx::Size(256 * 50, 256 * 50)); | 
| 50     picture_layer_tiling_ = PictureLayerTiling::Create( | 50     picture_layer_tiling_ = PictureLayerTiling::Create( | 
| 51         PENDING_TREE, 1.f, pile, &picture_layer_tiling_client_, | 51         PENDING_TREE, 1.f, pile, &picture_layer_tiling_client_, | 
| 52         defaults.tiling_interest_area_viewport_multiplier, | 52         defaults.max_tiles_for_interest_area, | 
| 53         defaults.skewport_target_time_in_seconds, | 53         defaults.skewport_target_time_in_seconds, | 
| 54         defaults.skewport_extrapolation_limit_in_content_pixels); | 54         defaults.skewport_extrapolation_limit_in_content_pixels); | 
| 55     picture_layer_tiling_->CreateAllTilesForTesting(); | 55     picture_layer_tiling_->CreateAllTilesForTesting(); | 
| 56   } | 56   } | 
| 57 | 57 | 
| 58   void TearDown() override { picture_layer_tiling_.reset(NULL); } | 58   void TearDown() override { picture_layer_tiling_.reset(NULL); } | 
| 59 | 59 | 
| 60   void RunInvalidateTest(const std::string& test_name, const Region& region) { | 60   void RunInvalidateTest(const std::string& test_name, const Region& region) { | 
| 61     timer_.Reset(); | 61     timer_.Reset(); | 
| 62     do { | 62     do { | 
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 162   RunComputeTilePriorityRectsStationaryTest("rotation", transform); | 162   RunComputeTilePriorityRectsStationaryTest("rotation", transform); | 
| 163   RunComputeTilePriorityRectsScrollingTest("rotation", transform); | 163   RunComputeTilePriorityRectsScrollingTest("rotation", transform); | 
| 164 | 164 | 
| 165   transform.ApplyPerspectiveDepth(10); | 165   transform.ApplyPerspectiveDepth(10); | 
| 166   RunComputeTilePriorityRectsStationaryTest("perspective", transform); | 166   RunComputeTilePriorityRectsStationaryTest("perspective", transform); | 
| 167   RunComputeTilePriorityRectsScrollingTest("perspective", transform); | 167   RunComputeTilePriorityRectsScrollingTest("perspective", transform); | 
| 168 } | 168 } | 
| 169 | 169 | 
| 170 }  // namespace | 170 }  // namespace | 
| 171 }  // namespace cc | 171 }  // namespace cc | 
| OLD | NEW | 
|---|