OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/resources/picture_layer_tiling_set.h" | 5 #include "cc/resources/picture_layer_tiling_set.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "cc/resources/resource_pool.h" | 9 #include "cc/resources/resource_pool.h" |
10 #include "cc/resources/resource_provider.h" | 10 #include "cc/resources/resource_provider.h" |
11 #include "cc/test/fake_output_surface.h" | 11 #include "cc/test/fake_output_surface.h" |
12 #include "cc/test/fake_picture_layer_tiling_client.h" | 12 #include "cc/test/fake_picture_layer_tiling_client.h" |
13 #include "cc/test/fake_tile_manager_client.h" | 13 #include "cc/test/fake_tile_manager_client.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "ui/gfx/size_conversions.h" | 15 #include "ui/gfx/size_conversions.h" |
16 | 16 |
17 namespace cc { | 17 namespace cc { |
18 namespace { | 18 namespace { |
19 | 19 |
20 TEST(PictureLayerTilingSetTest, NoResources) { | 20 TEST(PictureLayerTilingSetTest, NoResources) { |
21 FakePictureLayerTilingClient client; | 21 FakePictureLayerTilingClient client; |
22 gfx::Size layer_bounds(1000, 800); | 22 gfx::Size layer_bounds(1000, 800); |
23 PictureLayerTilingSet set(&client, layer_bounds); | 23 PictureLayerTilingSet set(&client, layer_bounds); |
24 client.SetTileSize(gfx::Size(256, 256)); | 24 client.SetTileSize(gfx::Size(256, 256)); |
25 | 25 |
26 set.AddTiling(1.0); | 26 set.AddTiling(1.0)->CreateAllTilesForTesting(); |
27 set.AddTiling(1.5); | 27 set.AddTiling(1.5)->CreateAllTilesForTesting(); |
28 set.AddTiling(2.0); | 28 set.AddTiling(2.0)->CreateAllTilesForTesting(); |
29 | 29 |
30 float contents_scale = 2.0; | 30 float contents_scale = 2.0; |
31 gfx::Size content_bounds( | 31 gfx::Size content_bounds( |
32 gfx::ToCeiledSize(gfx::ScaleSize(layer_bounds, contents_scale))); | 32 gfx::ToCeiledSize(gfx::ScaleSize(layer_bounds, contents_scale))); |
33 gfx::Rect content_rect(content_bounds); | 33 gfx::Rect content_rect(content_bounds); |
34 | 34 |
35 Region remaining(content_rect); | 35 Region remaining(content_rect); |
36 PictureLayerTilingSet::CoverageIterator iter( | 36 PictureLayerTilingSet::CoverageIterator iter( |
37 &set, | 37 &set, |
38 contents_scale, | 38 contents_scale, |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 TEST_F(PictureLayerTilingSetTestWithResources, ManyTilings_Equal) { | 143 TEST_F(PictureLayerTilingSetTestWithResources, ManyTilings_Equal) { |
144 runTest(10, 1.f, 1.f, 5.f, 5.f); | 144 runTest(10, 1.f, 1.f, 5.f, 5.f); |
145 } | 145 } |
146 | 146 |
147 TEST_F(PictureLayerTilingSetTestWithResources, ManyTilings_NotEqual) { | 147 TEST_F(PictureLayerTilingSetTestWithResources, ManyTilings_NotEqual) { |
148 runTest(10, 1.f, 1.f, 4.5f, 5.f); | 148 runTest(10, 1.f, 1.f, 4.5f, 5.f); |
149 } | 149 } |
150 | 150 |
151 } // namespace | 151 } // namespace |
152 } // namespace cc | 152 } // namespace cc |
OLD | NEW |