diff options
author | dominikg@chromium.org <dominikg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-13 19:40:58 +0000 |
---|---|---|
committer | dominikg@chromium.org <dominikg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-13 19:40:58 +0000 |
commit | 29d39a4adb6f9b2a4e05bb3f95140df2e3957ec7 (patch) | |
tree | ed44e1e28e3bbe7772fd44843bab4c226271e4a7 /cc/resources | |
parent | 08035b96da9bb56a4a857f99756ae47743f2975b (diff) | |
download | chromium_src-29d39a4adb6f9b2a4e05bb3f95140df2e3957ec7.zip chromium_src-29d39a4adb6f9b2a4e05bb3f95140df2e3957ec7.tar.gz chromium_src-29d39a4adb6f9b2a4e05bb3f95140df2e3957ec7.tar.bz2 |
Use LapTimer in rasterize_and_record micro benchmark.
Timing record or rasterize on very small layers can be problematic. The
operations are very short and timing them individually can lead to quantization.
Use a LapTimer to run the operations we're timing for at least a specified
amount of time to avoid this problem.
Moves LapTimer from cc/test to cc/debug so it's accessible outside of testing
code.
BUG=
Review URL: https://codereview.chromium.org/279183002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270170 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/resources')
-rw-r--r-- | cc/resources/picture_layer_tiling_perftest.cc | 2 | ||||
-rw-r--r-- | cc/resources/picture_pile_impl_perftest.cc | 2 | ||||
-rw-r--r-- | cc/resources/raster_worker_pool_perftest.cc | 2 | ||||
-rw-r--r-- | cc/resources/task_graph_runner_perftest.cc | 2 | ||||
-rw-r--r-- | cc/resources/tile_manager_perftest.cc | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/cc/resources/picture_layer_tiling_perftest.cc b/cc/resources/picture_layer_tiling_perftest.cc index 4ccef0a..1e698b9 100644 --- a/cc/resources/picture_layer_tiling_perftest.cc +++ b/cc/resources/picture_layer_tiling_perftest.cc @@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "cc/debug/lap_timer.h" #include "cc/resources/picture_layer_tiling.h" #include "cc/test/fake_picture_layer_tiling_client.h" -#include "cc/test/lap_timer.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/perf/perf_test.h" diff --git a/cc/resources/picture_pile_impl_perftest.cc b/cc/resources/picture_pile_impl_perftest.cc index 3cc8065..7ced0ea 100644 --- a/cc/resources/picture_pile_impl_perftest.cc +++ b/cc/resources/picture_pile_impl_perftest.cc @@ -4,9 +4,9 @@ #include "cc/resources/picture_pile_impl.h" +#include "cc/debug/lap_timer.h" #include "cc/test/fake_picture_pile_impl.h" #include "cc/test/fake_rendering_stats_instrumentation.h" -#include "cc/test/lap_timer.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/perf/perf_test.h" diff --git a/cc/resources/raster_worker_pool_perftest.cc b/cc/resources/raster_worker_pool_perftest.cc index 0689e50..a0b63ef 100644 --- a/cc/resources/raster_worker_pool_perftest.cc +++ b/cc/resources/raster_worker_pool_perftest.cc @@ -5,6 +5,7 @@ #include "cc/resources/raster_worker_pool.h" #include "base/time/time.h" +#include "cc/debug/lap_timer.h" #include "cc/output/context_provider.h" #include "cc/resources/direct_raster_worker_pool.h" #include "cc/resources/image_copy_raster_worker_pool.h" @@ -16,7 +17,6 @@ #include "cc/resources/scoped_resource.h" #include "cc/test/fake_output_surface.h" #include "cc/test/fake_output_surface_client.h" -#include "cc/test/lap_timer.h" #include "cc/test/test_context_support.h" #include "cc/test/test_shared_bitmap_manager.h" #include "cc/test/test_web_graphics_context_3d.h" diff --git a/cc/resources/task_graph_runner_perftest.cc b/cc/resources/task_graph_runner_perftest.cc index 2dff063..bfa4ebe 100644 --- a/cc/resources/task_graph_runner_perftest.cc +++ b/cc/resources/task_graph_runner_perftest.cc @@ -9,7 +9,7 @@ #include "base/memory/scoped_ptr.h" #include "base/time/time.h" #include "cc/base/completion_event.h" -#include "cc/test/lap_timer.h" +#include "cc/debug/lap_timer.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/perf/perf_test.h" diff --git a/cc/resources/tile_manager_perftest.cc b/cc/resources/tile_manager_perftest.cc index fcc7e4f..3f12461 100644 --- a/cc/resources/tile_manager_perftest.cc +++ b/cc/resources/tile_manager_perftest.cc @@ -3,6 +3,7 @@ // found in the LICENSE file. #include "base/time/time.h" +#include "cc/debug/lap_timer.h" #include "cc/resources/tile.h" #include "cc/resources/tile_priority.h" #include "cc/test/fake_impl_proxy.h" @@ -14,7 +15,6 @@ #include "cc/test/fake_tile_manager.h" #include "cc/test/fake_tile_manager_client.h" #include "cc/test/impl_side_painting_settings.h" -#include "cc/test/lap_timer.h" #include "cc/test/test_shared_bitmap_manager.h" #include "cc/test/test_tile_priorities.h" #include "cc/trees/layer_tree_impl.h" |