Abstract GoogleURLTracker & google_util Profile dependencies
[chromium-blink-merge.git] / cc / layers / io_surface_layer_impl_unittest.cc
blob9a09bbd75fc4c3fbdb4cab5ae372b0e3de919108
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
3 // found in the LICENSE file.
5 #include "cc/layers/io_surface_layer_impl.h"
7 #include "cc/test/layer_test_common.h"
8 #include "testing/gtest/include/gtest/gtest.h"
10 namespace cc {
11 namespace {
13 TEST(IOSurfaceLayerImplTest, Occlusion) {
14 gfx::Size layer_size(1000, 1000);
15 gfx::Size viewport_size(1000, 1000);
17 LayerTestCommon::LayerImplTest impl;
19 IOSurfaceLayerImpl* io_surface_layer_impl =
20 impl.AddChildToRoot<IOSurfaceLayerImpl>();
21 io_surface_layer_impl->SetAnchorPoint(gfx::PointF());
22 io_surface_layer_impl->SetBounds(layer_size);
23 io_surface_layer_impl->SetContentBounds(layer_size);
24 io_surface_layer_impl->SetDrawsContent(true);
26 impl.CalcDrawProps(viewport_size);
29 SCOPED_TRACE("No occlusion");
30 gfx::Rect occluded;
31 impl.AppendQuadsWithOcclusion(io_surface_layer_impl, occluded);
33 LayerTestCommon::VerifyQuadsExactlyCoverRect(impl.quad_list(),
34 gfx::Rect(layer_size));
35 EXPECT_EQ(1u, impl.quad_list().size());
39 SCOPED_TRACE("Full occlusion");
40 gfx::Rect occluded(io_surface_layer_impl->visible_content_rect());
41 impl.AppendQuadsWithOcclusion(io_surface_layer_impl, occluded);
43 LayerTestCommon::VerifyQuadsExactlyCoverRect(impl.quad_list(), gfx::Rect());
44 EXPECT_EQ(impl.quad_list().size(), 0u);
48 SCOPED_TRACE("Partial occlusion");
49 gfx::Rect occluded(200, 0, 800, 1000);
50 impl.AppendQuadsWithOcclusion(io_surface_layer_impl, occluded);
52 size_t partially_occluded_count = 0;
53 LayerTestCommon::VerifyQuadsCoverRectWithOcclusion(
54 impl.quad_list(),
55 gfx::Rect(layer_size),
56 occluded,
57 &partially_occluded_count);
58 // The layer outputs one quad, which is partially occluded.
59 EXPECT_EQ(1u, impl.quad_list().size());
60 EXPECT_EQ(1u, partially_occluded_count);
64 } // namespace
65 } // namespace cc