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

Unified Diff: cc/output/renderer_pixeltest.cc

Issue 1271843005: cc: Remove code for drawing checkerboard quads, it's not used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rm-checkers: sizes Created 5 years, 4 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/output/overlay_unittest.cc ('k') | cc/output/shader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/renderer_pixeltest.cc
diff --git a/cc/output/renderer_pixeltest.cc b/cc/output/renderer_pixeltest.cc
index 34fe8ae9c7c9c9d1f81f1e8302b57a035958f7f8..608e3a5744c1e84b56fdd87cea952e9865b0227f 100644
--- a/cc/output/renderer_pixeltest.cc
+++ b/cc/output/renderer_pixeltest.cc
@@ -2937,109 +2937,6 @@ TYPED_TEST(RendererPixelTest, WrapModeRepeat) {
FuzzyPixelOffByOneComparator(true)));
}
-TYPED_TEST(RendererPixelTest, Checkerboards) {
- gfx::Rect rect(this->device_viewport_size_);
-
- RenderPassId id(1, 1);
- scoped_ptr<RenderPass> pass = CreateTestRootRenderPass(id, rect);
-
- SharedQuadState* shared_state =
- CreateTestSharedQuadState(gfx::Transform(), rect, pass.get());
-
- // The color's alpha value is not used.
- SkColor color1 = SK_ColorGREEN;
- color1 = SkColorSetA(color1, 0);
- SkColor color2 = SK_ColorBLUE;
- color2 = SkColorSetA(color2, 0);
-
- gfx::Rect content_rect(rect);
-
- gfx::Rect top_left(content_rect);
- gfx::Rect top_right(content_rect);
- gfx::Rect bottom_left(content_rect);
- gfx::Rect bottom_right(content_rect);
- // The format is Inset(left, top, right, bottom).
- top_left.Inset(0, 0, content_rect.width() / 2, content_rect.height() / 2);
- top_right.Inset(content_rect.width() / 2, 0, 0, content_rect.height() / 2);
- bottom_left.Inset(0, content_rect.height() / 2, content_rect.width() / 2, 0);
- bottom_right.Inset(content_rect.width() / 2, content_rect.height() / 2, 0, 0);
-
- // Appends checkerboard quads with a scale of 1.
- CheckerboardDrawQuad* quad =
- pass->CreateAndAppendDrawQuad<CheckerboardDrawQuad>();
- quad->SetNew(shared_state, top_left, top_left, color1, 1.f);
- quad = pass->CreateAndAppendDrawQuad<CheckerboardDrawQuad>();
- quad->SetNew(shared_state, top_right, top_right, color2, 1.f);
- quad = pass->CreateAndAppendDrawQuad<CheckerboardDrawQuad>();
- quad->SetNew(shared_state, bottom_left, bottom_left, color2, 1.f);
- quad = pass->CreateAndAppendDrawQuad<CheckerboardDrawQuad>();
- quad->SetNew(shared_state, bottom_right, bottom_right, color1, 1.f);
-
- RenderPassList pass_list;
- pass_list.push_back(pass.Pass());
-
- base::FilePath::StringType path =
- IsSoftwareRenderer<TypeParam>()
- ? FILE_PATH_LITERAL("four_blue_green_checkers.png")
- : FILE_PATH_LITERAL("checkers.png");
- EXPECT_TRUE(this->RunPixelTest(&pass_list, base::FilePath(path),
- ExactPixelComparator(true)));
-}
-
-TYPED_TEST(RendererPixelTest, CheckerboardsScaled) {
- gfx::Rect rect(this->device_viewport_size_);
-
- RenderPassId id(1, 1);
- scoped_ptr<RenderPass> pass = CreateTestRootRenderPass(id, rect);
-
- gfx::Transform scale;
- scale.Scale(2.f, 2.f);
-
- SharedQuadState* shared_state =
- CreateTestSharedQuadState(scale, rect, pass.get());
-
- // The color's alpha value is not used.
- SkColor color1 = SK_ColorGREEN;
- color1 = SkColorSetA(color1, 0);
- SkColor color2 = SK_ColorBLUE;
- color2 = SkColorSetA(color2, 0);
-
- gfx::Rect content_rect(rect);
- content_rect.Inset(0, 0, rect.width() / 2, rect.height() / 2);
-
- gfx::Rect top_left(content_rect);
- gfx::Rect top_right(content_rect);
- gfx::Rect bottom_left(content_rect);
- gfx::Rect bottom_right(content_rect);
- // The format is Inset(left, top, right, bottom).
- top_left.Inset(0, 0, content_rect.width() / 2, content_rect.height() / 2);
- top_right.Inset(content_rect.width() / 2, 0, 0, content_rect.height() / 2);
- bottom_left.Inset(0, content_rect.height() / 2, content_rect.width() / 2, 0);
- bottom_right.Inset(content_rect.width() / 2, content_rect.height() / 2, 0, 0);
-
- // Appends checkerboard quads with a scale of 2, and a shared quad state
- // with a scale of 2. The checkers should be scaled by 2 * 2 = 4.
- CheckerboardDrawQuad* quad =
- pass->CreateAndAppendDrawQuad<CheckerboardDrawQuad>();
- quad->SetNew(shared_state, top_left, top_left, color1, 2.f);
- quad = pass->CreateAndAppendDrawQuad<CheckerboardDrawQuad>();
- quad->SetNew(shared_state, top_right, top_right, color2, 2.f);
- quad = pass->CreateAndAppendDrawQuad<CheckerboardDrawQuad>();
- quad->SetNew(shared_state, bottom_left, bottom_left, color2, 2.f);
- quad = pass->CreateAndAppendDrawQuad<CheckerboardDrawQuad>();
- quad->SetNew(shared_state, bottom_right, bottom_right, color1, 2.f);
-
- RenderPassList pass_list;
- pass_list.push_back(pass.Pass());
-
- base::FilePath::StringType path =
- IsSoftwareRenderer<TypeParam>()
- ? FILE_PATH_LITERAL("four_blue_green_checkers.png")
- : FILE_PATH_LITERAL("checkers_big.png");
- EXPECT_TRUE(this->RunPixelTest(&pass_list, base::FilePath(path),
- ExactPixelComparator(true)));
-}
-
#endif // !defined(OS_ANDROID)
} // namespace
« no previous file with comments | « cc/output/overlay_unittest.cc ('k') | cc/output/shader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698