Chromium Code Reviews

Side by Side Diff: cc/layers/picture_layer_impl_perftest.cc

Issue 885443002: Roll Chrome into Mojo. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase to ToT mojo Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/layers/picture_layer_impl_unittest.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 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/layers/picture_layer_impl.h" 5 #include "cc/layers/picture_layer_impl.h"
6 6
7 #include "cc/debug/lap_timer.h" 7 #include "cc/debug/lap_timer.h"
8 #include "cc/resources/tiling_set_raster_queue_all.h" 8 #include "cc/resources/tiling_set_raster_queue_all.h"
9 #include "cc/test/fake_impl_proxy.h" 9 #include "cc/test/fake_impl_proxy.h"
10 #include "cc/test/fake_layer_tree_host_impl.h" 10 #include "cc/test/fake_layer_tree_host_impl.h"
(...skipping 59 matching lines...)
70 70
71 void RunRasterQueueConstructAndIterateTest(const std::string& test_name, 71 void RunRasterQueueConstructAndIterateTest(const std::string& test_name,
72 int num_tiles, 72 int num_tiles,
73 const gfx::Size& viewport_size) { 73 const gfx::Size& viewport_size) {
74 host_impl_.SetViewportSize(viewport_size); 74 host_impl_.SetViewportSize(viewport_size);
75 host_impl_.pending_tree()->UpdateDrawProperties(); 75 host_impl_.pending_tree()->UpdateDrawProperties();
76 76
77 timer_.Reset(); 77 timer_.Reset();
78 do { 78 do {
79 int count = num_tiles; 79 int count = num_tiles;
80 scoped_ptr<TilingSetRasterQueue> queue(new TilingSetRasterQueueAll( 80 scoped_ptr<TilingSetRasterQueueAll> queue(new TilingSetRasterQueueAll(
81 pending_layer_->picture_layer_tiling_set(), false)); 81 pending_layer_->picture_layer_tiling_set(), false));
82 while (count--) { 82 while (count--) {
83 ASSERT_TRUE(!queue->IsEmpty()) << "count: " << count; 83 ASSERT_TRUE(!queue->IsEmpty()) << "count: " << count;
84 ASSERT_TRUE(queue->Top() != nullptr) << "count: " << count; 84 ASSERT_TRUE(queue->Top() != nullptr) << "count: " << count;
85 queue->Pop(); 85 queue->Pop();
86 } 86 }
87 timer_.NextLap(); 87 timer_.NextLap();
88 } while (!timer_.HasTimeLimitExpired()); 88 } while (!timer_.HasTimeLimitExpired());
89 89
90 perf_test::PrintResult("tiling_set_raster_queue_construct_and_iterate", "", 90 perf_test::PrintResult("tiling_set_raster_queue_construct_and_iterate", "",
91 test_name, timer_.LapsPerSecond(), "runs/s", true); 91 test_name, timer_.LapsPerSecond(), "runs/s", true);
92 } 92 }
93 93
94 void RunRasterQueueConstructTest(const std::string& test_name, 94 void RunRasterQueueConstructTest(const std::string& test_name,
95 const gfx::Rect& viewport) { 95 const gfx::Rect& viewport) {
96 host_impl_.SetViewportSize(viewport.size()); 96 host_impl_.SetViewportSize(viewport.size());
97 pending_layer_->SetScrollOffset( 97 pending_layer_->SetScrollOffset(
98 gfx::ScrollOffset(viewport.x(), viewport.y())); 98 gfx::ScrollOffset(viewport.x(), viewport.y()));
99 host_impl_.pending_tree()->UpdateDrawProperties(); 99 host_impl_.pending_tree()->UpdateDrawProperties();
100 100
101 timer_.Reset(); 101 timer_.Reset();
102 do { 102 do {
103 scoped_ptr<TilingSetRasterQueue> queue(new TilingSetRasterQueueAll( 103 scoped_ptr<TilingSetRasterQueueAll> queue(new TilingSetRasterQueueAll(
104 pending_layer_->picture_layer_tiling_set(), false)); 104 pending_layer_->picture_layer_tiling_set(), false));
105 timer_.NextLap(); 105 timer_.NextLap();
106 } while (!timer_.HasTimeLimitExpired()); 106 } while (!timer_.HasTimeLimitExpired());
107 107
108 perf_test::PrintResult("tiling_set_raster_queue_construct", "", test_name, 108 perf_test::PrintResult("tiling_set_raster_queue_construct", "", test_name,
109 timer_.LapsPerSecond(), "runs/s", true); 109 timer_.LapsPerSecond(), "runs/s", true);
110 } 110 }
111 111
112 void RunEvictionQueueConstructAndIterateTest( 112 void RunEvictionQueueConstructAndIterateTest(
113 const std::string& test_name, 113 const std::string& test_name,
(...skipping 134 matching lines...)
248 ASSERT_TRUE(host_impl_.tile_manager() != nullptr); 248 ASSERT_TRUE(host_impl_.tile_manager() != nullptr);
249 host_impl_.tile_manager()->InitializeTilesWithResourcesForTesting(all_tiles); 249 host_impl_.tile_manager()->InitializeTilesWithResourcesForTesting(all_tiles);
250 250
251 RunEvictionQueueConstructTest("0_0_100x100", gfx::Rect(0, 0, 100, 100)); 251 RunEvictionQueueConstructTest("0_0_100x100", gfx::Rect(0, 0, 100, 100));
252 RunEvictionQueueConstructTest("5000_0_100x100", gfx::Rect(5000, 0, 100, 100)); 252 RunEvictionQueueConstructTest("5000_0_100x100", gfx::Rect(5000, 0, 100, 100));
253 RunEvictionQueueConstructTest("9999_0_100x100", gfx::Rect(9999, 0, 100, 100)); 253 RunEvictionQueueConstructTest("9999_0_100x100", gfx::Rect(9999, 0, 100, 100));
254 } 254 }
255 255
256 } // namespace 256 } // namespace
257 } // namespace cc 257 } // namespace cc
OLDNEW
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/layers/picture_layer_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine