Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Unified Diff: cc/layers/picture_layer_impl_unittest.cc

Issue 1713503002: Reland Allow one-copy and zero-copy task tile worker pools to use compressed textures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/output/renderer_settings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/picture_layer_impl_unittest.cc
diff --git a/cc/layers/picture_layer_impl_unittest.cc b/cc/layers/picture_layer_impl_unittest.cc
index 0f73ef1912147dd8a3ef81fe82a237203b6efdef..04bac67a49b442f350f650fa5eb43c6caea69a89 100644
--- a/cc/layers/picture_layer_impl_unittest.cc
+++ b/cc/layers/picture_layer_impl_unittest.cc
@@ -4890,8 +4890,10 @@ TEST_F(TileSizeTest, TileSizes) {
layer->set_gpu_raster_max_texture_size(host_impl_.device_viewport_size());
result = layer->CalculateTileSize(gfx::Size(10000, 10000));
- EXPECT_EQ(result.width(), 2000 + 2 * PictureLayerTiling::kBorderTexels);
- EXPECT_EQ(result.height(), 500 + 2);
+ EXPECT_EQ(result.width(),
+ MathUtil::UncheckedRoundUp(
+ 2000 + 2 * PictureLayerTiling::kBorderTexels, 4));
+ EXPECT_EQ(result.height(), 504); // 500 + 2, 4-byte aligned.
// Clamp and round-up, when smaller than viewport.
// Tile-height doubles to 50% when width shrinks to <= 50%.
@@ -4899,7 +4901,7 @@ TEST_F(TileSizeTest, TileSizes) {
layer->set_gpu_raster_max_texture_size(host_impl_.device_viewport_size());
result = layer->CalculateTileSize(gfx::Size(447, 10000));
EXPECT_EQ(result.width(), 448);
- EXPECT_EQ(result.height(), 500 + 2);
+ EXPECT_EQ(result.height(), 504); // 500 + 2, 4-byte aliged.
// Largest layer is 50% of viewport width (rounded up), and
// 50% of viewport in height.
@@ -4908,7 +4910,7 @@ TEST_F(TileSizeTest, TileSizes) {
EXPECT_EQ(result.height(), 448);
result = layer->CalculateTileSize(gfx::Size(500, 499));
EXPECT_EQ(result.width(), 512);
- EXPECT_EQ(result.height(), 500 + 2);
+ EXPECT_EQ(result.height(), 504); // 500 + 2, 4-byte aligned.
}
TEST_F(NoLowResPictureLayerImplTest, LowResWasHighResCollision) {
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/output/renderer_settings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698